Skip to content

Commit

Permalink
added thm pics
Browse files Browse the repository at this point in the history
  • Loading branch information
0x00Jeff committed Apr 15, 2024
1 parent ac26def commit 659230c
Show file tree
Hide file tree
Showing 24 changed files with 63 additions and 0 deletions.
Binary file modified .jekyll-metadata
Binary file not shown.
Binary file added assets/thm/glass/glass.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
63 changes: 63 additions & 0 deletions assets/thm/glass/port_finder.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,63 @@
#!/bin/bash

if [ $# != 1 ];then
echo "usage : port.sh IP"
exit
fi

LOW=1
HIGH=2
last_state=0
current_state=0
port=$(( ($RANDOM % 4999 ) + 9000))
step=1000


#echo port is $port

while true; do

echo -n "$port -> "

response=$(ssh $1 -p $port -oStrictHostKeyChecking=no -oUserKnownHostsFile=/dev/null 2>/dev/null)
echo $response


#echo response is $response

if [ "$(echo $response)" == "$(echo -en "Higher\r")" ];then
while (( $(( $port - $step )) < 9000 ));do
step=$(( $step / 2))
done

if [ $last_state == $LOW ];then # response change from "Lower" to "Higher"
step=$(( $step / 2))
fi

port=$(( $port - $step ))
current_state=$HIGH

elif [ "$(echo $response)" == "$(echo -en "Lower\r")" ];then
while (( $(( $port + $step)) > 13999 ));do
step=$(( $step / 2))
done

if [ $last_state == $HIGH ];then # response changed from "Hihger" to "Lower"
step=$(( $step / 2))
fi

port=$(( $port + $step ))
current_state=$LOW

else
# this doesn't work, instead the scripts freezes duo the connection persisting
# and asking for a password instead of closing up like the other ports
# when this script freezes you know you found your target port
echo the right port is $port !
exit

fi

last_state=$current_state

done
Binary file added assets/thm/robot/command_line.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/thm/robot/found_user.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/thm/robot/malicious_404.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/thm/robot/mr_robot.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/thm/robot/wp_loged_in.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/thm/skynet/2nd_login_page.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/thm/skynet/ai_poem.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/thm/skynet/burp_paylods.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/thm/skynet/burp_request.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/thm/skynet/logged_in.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/thm/skynet/password.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/thm/skynet/root_index.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/thm/skynet/shell_via_rfi.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/thm/skynet/skynet.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/thm/skynet/squirrelmail.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/thm/wonder/creds.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/thm/wonder/index_page.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/thm/wonder/r_directory.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/thm/wonder/something_hidden.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/thm/wonder/upside_down.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/thm/wonder/wonderland.jpeg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 659230c

Please sign in to comment.