All Projects → F0x1d → omnibin

F0x1d / omnibin

Licence: Apache-2.0 license
Android client for different bins like dogbin. Previous dogbin mobile.

Programming Languages

java
68154 projects - #9 most used programming language

Projects that are alternatives of or similar to omnibin

Paste
Paste is a project that started from the files pastebin.com used before it was bought.
Stars: ✭ 204 (+973.68%)
Mutual labels:  pastebin
binnit
minimal no-fuss pastebin service clone in golang
Stars: ✭ 27 (+42.11%)
Mutual labels:  pastebin
PasteBinApp
iOS app for PasteBin
Stars: ✭ 27 (+42.11%)
Mutual labels:  pastebin
rentry
Markdown pastebin from command line
Stars: ✭ 252 (+1226.32%)
Mutual labels:  pastebin
uranus
[W.I.P] An ecosystem of crawlers for detecting: leaks, sensitive data exposure and attempts exfiltration of data
Stars: ✭ 22 (+15.79%)
Mutual labels:  pastebin
Jawbreaker
A Python obfuscator using HTTP Requests and Hastebin.
Stars: ✭ 50 (+163.16%)
Mutual labels:  pastebin
Cardpwn
OSINT Tool to find Breached Credit Cards Information
Stars: ✭ 187 (+884.21%)
Mutual labels:  pastebin
pastebin-api
A very simple pastebin npm package to interact with the pastebin api!
Stars: ✭ 20 (+5.26%)
Mutual labels:  pastebin
piu.clj
Simple pastebin
Stars: ✭ 14 (-26.32%)
Mutual labels:  pastebin
shelf.gg
A pastebin to find and share useful resources 📚
Stars: ✭ 29 (+52.63%)
Mutual labels:  pastebin
EMAGNET
Automated hacking tool that will find leaked databases with 97.1% accurate to grab mail + password together from recent uploads from https://pastebin.com. Bruteforce support for spotify accounts, instagram accounts, ssh servers, microsoft rdp clients and gmail accounts
Stars: ✭ 1,427 (+7410.53%)
Mutual labels:  pastebin
nnmm
A super tiny pastebin/url minifier "microservice"
Stars: ✭ 77 (+305.26%)
Mutual labels:  pastebin
dpaste
The Django project driving dpaste.org
Stars: ✭ 424 (+2131.58%)
Mutual labels:  pastebin
Dogbin
The sexiest pastebin and url shortener ever
Stars: ✭ 237 (+1147.37%)
Mutual labels:  pastebin
pastelyst
A Web Paste Tool built with Cutelyst and KDE Frameworks
Stars: ✭ 19 (+0%)
Mutual labels:  pastebin
Phorkie
Self-hosted pastebin software written in PHP. Pastes are editable, forkable, may have multiple files and are stored in git repositories.
Stars: ✭ 203 (+968.42%)
Mutual labels:  pastebin
awesome-pastebin
List of pastebin sites.
Stars: ✭ 58 (+205.26%)
Mutual labels:  pastebin
CryptDown
client-side AES-encrypted Markdown pastebin clone
Stars: ✭ 47 (+147.37%)
Mutual labels:  pastebin
local-paste
Lightweight pastebin for home network which may or may not be connected to the internet.
Stars: ✭ 24 (+26.32%)
Mutual labels:  pastebin
bin
highly opinionated, minimal pastebin
Stars: ✭ 97 (+410.53%)
Mutual labels:  pastebin

omnibin

Android client for different bins like dogbin. Previous dogbin mobile.

Get it on Google Play

Integration

omnibin supports integration

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    // Creating intent
    Intent intent = new Intent("com.f0x1d.dogbin.ACTION_UPLOAD_TO_FOXBIN");
    // Text to publish
    intent.putExtra(Intent.EXTRA_TEXT, "vzlom beb 3");
    // Slug to use (link), example: https://some.domain/{slug}
    intent.putExtra("slug", "happynewyear");
    // omnibin won't automatically copy the result link
    intent.putExtra("copy", false);
    intent.setType("text/plain");
    // Start intent
    startActivityForResult(intent, 0);
}

@Override
protected void onActivityResult(int requestCode, int resultCode, @Nullable Intent data) {
    super.onActivityResult(requestCode, resultCode, data);

    if (requestCode == 0 && resultCode == RESULT_OK) {
        // Text is published and all is ok, let's display the link
        TextView textView = new TextView(this);
        // data.getData().toString() will return result link, example: https://some.domain/vzlom
        textView.setText(data.getData().toString());

        setContentView(textView);
    }
}

Also can be used without onActivityResult

Modules SDK

Docs are available here

License

omnibin is distributed under the terms of the Apache License (Version 2.0). See license for details.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].