Skip to content

Instantly share code, notes, and snippets.

View Abhinickz's full-sized avatar
💻
Full Stack Developer

Abhishek Bhasker Abhinickz

💻
Full Stack Developer
View GitHub Profile
@Abhinickz
Abhinickz / whatsapp_phone_enumerator_floated_div.js
Created May 12, 2017 19:03
PoC WhatsApp enumeration of phonenumbers, profile pics, about texts and online statuses (floated div)
/*
PoC WhatsApp enumeration of phonenumbers, profile pics, about texts and online statuses
Floated div edition
01-05-2017
(c) 2017 - Loran Kloeze - [email protected]
This script creates a UI on top of the WhatsApp Web interface. It enumerates certain kinds
of information from a range of phonenumbers. It doesn't matter if these numbers are part
of your contact list. At the end a table is displayed containing phonenumbers, profile pics,
about texts and online statuses. The online statuses are being updated every
@Abhinickz
Abhinickz / format_file_find.pl
Created April 12, 2017 08:16
File::Find use with the tabbed format data!!!
#!/usr/bin/perl
use strict; use warnings; use Data::Dumper;
use File::Find;
$| = 1;
find(\&wanted, './');
sub wanted {
my $file_type = `file -bi $_`;
chomp($file_type);
#!/usr/bin/perl
use strict; use warnings;
my $data = [ 1, 2, 3, 4 ];
eval {
require Data::Dumper;
Data::Dumper->import();
print Dumper($data);
1;
@Abhinickz
Abhinickz / test.pl
Last active April 12, 2017 08:16
test
#!/usr/bin/perl
use strict; use warnings; use Data::Dumper; $Data::Dumper::Sortkeys = 1;
#no warnings 'uninitialized';
print "Hello World!";