Note: The Listed platform will permanently shut down December 31, 2026. Your data published on Listed will still be available in your personal Standard Notes account. Learn more

Backspace character
s4mn3z just showed me a character that act as a backspace. This is new for me so here it is.~ » echo -n "There is a special char to delete a character 'C\b'"There is a special char to delete a character '' ~ » echo -n "\b" |xxd 00000000: 08 . ...
Read post
Msfconsole over Tor Network
Small POC about running msfconsole over tor First without torify ... (let's say my IP address is 123.123.123.123) msfconsole -q -x 'use auxiliary/gather/external_ip;run;quit' [+] Source ip to ifconfig.me is 123.123.123.123 [*] Auxiliary module execution completed And with torify ... torify msfconsole -q -x 'use auxiliary/gather/external_ip;run;quit' 1569426930 WARNING torsocks[34645]: [connect] Connection to a local address are denied since it might be a TCP DNS query to a local...
Read post
hexadecimal string to python variable with xxd and msfvenom
Given an hexadecimal string as following: $ cat hexstring 0c571e88ab7625cd4e231458c2b59fbd88bd63bd723bdb180f422d3a3f93 07a47fe1409830adf499b2e17d728561f807888d72254ef380377dd7e552 9ef03e48034fdd319b8d85d33b034ce165f3ac8a83032bba85335e25cf6c e199037271b7eb17a31d5671730a3fdcddfbbba9e2c89af2a7dd6d08fbca 33b6ade536ba3696 There is a easy way to transform it to a python variable (or other msfvenom supported format) following this simple steps: Transform to binary form using xxd $ cat hexstring | x...
Read post