[Boards: 3 / a / aco / adv / an / asp / b / bant / biz / c / can / cgl / ck / cm / co / cock / d / diy / e / fa / fap / fit / fitlit / g / gd / gif / h / hc / his / hm / hr / i / ic / int / jp / k / lgbt / lit / m / mlp / mlpol / mo / mtv / mu / n / news / o / out / outsoc / p / po / pol / qa / qst / r / r9k / s / s4s / sci / soc / sp / spa / t / tg / toy / trash / trv / tv / u / v / vg / vint / vip / vp / vr / w / wg / wsg / wsr / x / y ] [Search | Free Show | Home]

Any1 wants my little tool? Like it?

This is a blue board which means that it's for everybody (Safe For Work content only). If you see any adult content, please report it.

Thread replies: 11
Thread images: 1

File: Screenshot_2016-06-30_20-23-55.png (13KB, 502x138px) Image search: [Google]
Screenshot_2016-06-30_20-23-55.png
13KB, 502x138px
Any1 wants my little tool? Like it?
>>
>>55341680
I'd use it. Post more screens of it please.
>>
>>55341680
I want it even though the aircrack suite does the same shit
>>
>>55341680
Nah, I got wpa_cli
>>
If it doesn't crack WPA2 encryption in 5 seconds or less, then no.
>>
>>55341746
>>55341709
import java.io.ByteArrayOutputStream;
import java.io.InputStream;
import java.util.regex.Matcher;
import java.util.regex.Pattern;

public class Wihunt {

private static final String ANSI_RESET = "\u001B[0m";
private static final String ANSI_RED = "\u001B[1;31m";
private static final String ANSI_GREEN = "\u001B[1;32m";
private static final String ANSI_YELLOW = "\u001B[33m";
private static final String ANSI_CYAN = "\u001B[1;36m";
private static final Pattern cellPattern = Pattern.compile("Cell\\s\\d+\\s-\\sAddress:\\s([A-Z0-9:]+)");
private static final Pattern essidPattern = Pattern.compile("ESSID:\"(.+)\"\\n");
private static final Pattern qualityPattern = Pattern.compile("Quality=(\\d+)/\\d+\\s\\sSignal\\slevel=[-1-9](\\d+)\\sdBm");
private static final Pattern channelPattern = Pattern.compile("Channel:(\\d+)");

private static final Runtime runtime = Runtime.getRuntime();

public static void main(String[] args) throws Exception {

System.out.print("\033c" + "Starting WiFi Hunter v1.0 ... ");

while (true) {

Process p = runtime.exec("iwlist " + args[0] + " scan");

ByteArrayOutputStream baos = new ByteArrayOutputStream();
InputStream in = p.getInputStream();

byte[] buf = new byte[128];
int b;

while ((b = in.read(buf)) != -1) {
baos.write(buf, 0, b);
}

p.waitFor();

if (p.exitValue() != 0) {

in = p.getErrorStream();
baos.reset();

while ((b = in.read(buf)) != -1) {
baos.write(buf, 0, b);
}


1/2
>>
>>55342293
Fuck the 4chan post limit:

here it is http://pastebin.com/q64jDNRX
>>
>>55342316
>>55342293
OH GOD DAMMIT
http://pastebin.com/92vQfUvW
>>
>>55342293
>java
I changed my mind
>>
>>55342480
you'd prefer python?
>>
>>55342293
>just formatted output of another program
could have just written a shell script
Thread posts: 11
Thread images: 1


[Boards: 3 / a / aco / adv / an / asp / b / bant / biz / c / can / cgl / ck / cm / co / cock / d / diy / e / fa / fap / fit / fitlit / g / gd / gif / h / hc / his / hm / hr / i / ic / int / jp / k / lgbt / lit / m / mlp / mlpol / mo / mtv / mu / n / news / o / out / outsoc / p / po / pol / qa / qst / r / r9k / s / s4s / sci / soc / sp / spa / t / tg / toy / trash / trv / tv / u / v / vg / vint / vip / vp / vr / w / wg / wsg / wsr / x / y] [Search | Top | Home]

I'm aware that Imgur.com will stop allowing adult images since 15th of May. I'm taking actions to backup as much data as possible.
Read more on this topic here - https://archived.moe/talk/thread/1694/


If you need a post removed click on it's [Report] button and follow the instruction.
DMCA Content Takedown via dmca.com
All images are hosted on imgur.com.
If you like this website please support us by donating with Bitcoins at 16mKtbZiwW52BLkibtCr8jUg2KVUMTxVQ5
All trademarks and copyrights on this page are owned by their respective parties.
Images uploaded are the responsibility of the Poster. Comments are owned by the Poster.
This is a 4chan archive - all of the content originated from that site.
This means that RandomArchive shows their content, archived.
If you need information for a Poster - contact them.