[Boards: 3 / a / aco / adv / an / asp / b / biz / c / cgl / ck / cm / co / d / diy / e / fa / fit / g / gd / gif / h / hc / his / hm / hr / i / ic / int / jp / k / lgbt / lit / m / mlp / mu / n / news / o / out / p / po / pol / qa / r / r9k / s / s4s / sci / soc / sp / t / tg / toy / trash / trv / tv / u / v / vg / vp / vr / w / wg / wsg / wsr / x / y ] [Home]
4chanarchives logo
Any1 wants my little tool? Like it?
Images are sometimes not shown due to bandwidth/network limitations. Refreshing the page usually helps.

You are currently reading a thread in /g/ - Technology

Thread replies: 11
Thread images: 1
File: Screenshot_2016-06-30_20-23-55.png (13 KB, 502x138) Image search: [Google]
Screenshot_2016-06-30_20-23-55.png
13 KB, 502x138
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 replies: 11
Thread images: 1

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

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.
If a post contains personal/copyrighted/illegal content you can contact me at [email protected] with that post and thread number and it will be removed as soon as possible.
DMCA Content Takedown via dmca.com
All images are hosted on imgur.com, send takedown notices to them.
This is a 4chan archive - all of the content originated from them. If you need IP information for a Poster - you need to contact them. This website shows only archived content.