َاعلان

الأحد، 6 سبتمبر 2015

[Perl] Arsenal Project X 0.2

Today I bring you the new version of my Arsenal X written in Perl with the following options: [+] Gmail Inbox [+] Client Whois [+] Table [+] Downloader [+] Get IP [+] Locate IP [+] K0bra SQLI Scanner [+] Crack multiple hashes [+] Search administration panel [+] Port Scanner [+] Multi Cracker with support for FTP, TELNET, POP3 [+] executing commands in the console An image:


A video with examples of use:


If you want to download the program they can do from here: SourceForge GitHub that would be it. 
أكمل القراءة...

[C #] DH Rat 0.3

A simple Rat I did in C # with the following options: [+] Open and close reading [+] List files in a directory [+] Delete files and directories [+] See the contents of a file [+] Make the keyboard just type[+] Open Word and to vary things only the keyboard writes [+] Send messages [+] Make the computer talk (in English) [+] List processes [+] Kill a process [+] Run command and see the outcome [+] Back crazy mouse for a while [+] Hide and display the taskbar [+] Hide and show desktop icons [+] Keylogger included An image:



Version VideoTutorial


If you want to lose what they can do  here
أكمل القراءة...

[Perl] Example Murcielago Encryption

A simple example in Perl on how to perform the encryption Murcielago.




# !usr/bin/perl
# Cifrado Murcielago
# Coded By Doddy Hackman in the year 2014

head();
menu();
copyright();

# Functions

sub head {
    print "\n-- == Cifrado Murcielago == --\n";
}

sub copyright {
    print "\n\n-- == (C) Doddy Hackman 2014 == --\n";
}

sub menu {
    print qq(
===============
= Menu        =
===============
1 - Cifrar    =
2 - Descifrar =
3 - Exit      =
===============
);

    print "\n[+] Option : ";
    chomp( my $op = <stdin> );

    if ( $op eq "3" ) {
        copyright();
        <stdin>;
        exit(1);
    }

    print "\n[+] Enter text : ";
    chomp( my $text = <stdin> );

    print "\n[+] Result ...\n\n";

    if ( $op eq "1" ) {
        print cifrado_murcielago($text);
        <stdin>;
        menu();
    }
    elsif ( $op eq "2" ) {
        print descifrado_murcielago($text);
        <stdin>;
        menu();
    }
    else {
        menu();
    }

}

sub cifrado_murcielago {
    my $texto = shift;
    $texto =~ tr/murcielagoMURCIELAGO/01234567890123456789/;
    return $texto;
}

sub descifrado_murcielago {
    my $texto = shift;
    $texto =~ tr/01234567890123456789/murcielagoMURCIELAGO/;
    return $texto;
}

# The End ?



That's all. 
أكمل القراءة...

[Perl] Ejemplo de Cifrado Vigenere

. A simple example of Vigenere encryption made ​​using a module cpan I found in the code:

# !usr/bin/perl# Vigenere Cipher# Coded By Doddy Hackman in the year 2014use Crypt::Vigenere;head();menu();copyright();# Functionssub head {    print "\n-- == Vigenere Cipher == --\n";}sub copyright {    print "\n\n-- == (C) Doddy Hackman 2014 == --\n";}sub menu {    print qq(================ Menu        ================1 - Encode    =2 - Decode    =3 - Exit      ================);    print "\n[+] Option : ";    chomp( my $op = <stdin> );    if ( $op eq "3" ) {        copyright();        <stdin>;        exit(1);    }    print "\n[+] Enter text : ";    chomp( my $text = <stdin> );    print "\n[+] Enter Key : ";    chomp( my $key = <stdin> );    print "\n[+] Result ...\n\n";    $tool = Crypt::Vigenere->new($key);    if ( $op eq "1" ) {        print $tool->encodeMessage($text);        <stdin>;        menu();    }    elsif ( $op eq "2" ) {        print $tool->decodeMessage($text);        <stdin>;        menu();    }    else {        menu();    }}# The End ?


That's all. 

أكمل القراءة...

[Ruby] K0bra 0.5

Improved version of this script in Ruby for scannear the vulnerability by SQLI in one page. The script has the following options: [+] Check vulnerability [+] Search number of columns [+] Automatic search to display data number [+] Mostras tables [+] Display Columns [+] Display Database [+] Show tables in another DB [+] Show columns from a table in another DB [+] Show users mysql.user [+] Find files using load_file [+] Show a file using load_file [+] Show values ​​[+] Show information about the DB [+] Create a shell using outfile [+] All logs are stored in sorted the code:  Read That's all. 


أكمل القراءة...

[Ruby] LocateIP 0.3

. A simple Ruby script to locate an IP and DNS console Version:  Read Version Tk:  Read An image:


That is all.

أكمل القراءة...

[Ruby] PanelFinder 0.5

. A simple Ruby script to search the panel of administration of a product console Version:  ReadVersion Tk:  Read An image:

That is all.
أكمل القراءة...