Posts

SIGNAL.EXE REVERSE / DECOMPILATION

Image
Hello everyone! Recently i have got installed signal and u have probably know it as a secure messaging app.  As any software which comin to my pc i has tried to decompile it and the final result is different. Firstly, i have tried to analyze it but the obfuscation level is heavy, so the result is incomplete. Despite analysis failure i still have some data in strings, probably names of functions. And the functions strange. We can see somthin named screenshot, prob a function which making a screenshot, but the secure messaging app shouldn't acquire such functionality doesn't it? Next is somthin related to debugger is ok, but signal strength and mac address definitely doesn't. Also i got something related to virtualbox VM detection. As a quick report i unable to advise this messenger to use, in my own software i never use something similliar to this, but i have only protection from debugger.

THE ANONYMOUS SHIELD

Image
  Hello guys! Today im going to show you my configuration of iptables and MikroTik router. Lets begin! This is the beginning, next rules protect you from dos and ddos attacks, and in addition forbid the ping protocol for both, input and output: -A PREROUTING -p tcp -m conntrack --ctstate NEW -m tcpmss ! --mss 536:65535 -m comment --comment NO_DDOS_RULES -j DROP -A PREROUTING -p tcp -m tcp --tcp-flags FIN,SYN FIN,SYN -m comment --comment NO_DDOS_RULES -j DROP -A PREROUTING -p tcp -m tcp --tcp-flags SYN,RST SYN,RST -m comment --comment NO_DDOS_RULES -j DROP -A PREROUTING -p tcp -m tcp --tcp-flags FIN,RST FIN,RST -m comment --comment NO_DDOS_RULES -j DROP -A PREROUTING -p tcp -m tcp --tcp-flags FIN,ACK FIN -m comment --comment NO_DDOS_RULES -j DROP -A PREROUTING -p tcp -m tcp --tcp-flags ACK,URG URG -m comment --comment NO_DDOS_RULES -j DROP -A PREROUTING -p tcp -m tcp --tcp-flags PSH,ACK PSH -m comment --comment NO_DDOS_RULES -j DROP -A PREROUTING -m conntrack --ctstate INVALID ...