New commit. Added also NetworkShells.
This commit is contained in:
15
x86_32/0x2_NetworkShells/reverseshell_tcp/build_x86.sh
Normal file
15
x86_32/0x2_NetworkShells/reverseshell_tcp/build_x86.sh
Normal file
@@ -0,0 +1,15 @@
|
||||
#!/bin/bash
|
||||
# easy build script for shellcode class
|
||||
|
||||
if [ $# -ne 1 ];
|
||||
then
|
||||
echo "what is the name of the sourcefile, without .asm please"
|
||||
exit
|
||||
fi
|
||||
|
||||
name=$1
|
||||
|
||||
nasm -f elf32 $name.asm -o $name.o;ld -m elf_i386 -o $name $name.o
|
||||
md5sum $name
|
||||
ls -al $name
|
||||
echo "Done"
|
||||
Reference in New Issue
Block a user