Skip to main content

How to access malicious link in an enterprise environment




 I am writing the techniques based on my experience. In this globe right now below mentioned two techniques used to block the advance malicious links.

  1. SSL INSPECTION
  2. DNS sinkhole
  3. Use UDP connection

SSL INSPECTION

SSL inspection is a technique to decrypt all SSL/TLS connections in the perimeter device (Firewall, Web Security Device) and matching the inside web content like HTTP headers, HTML codes with the existing malware database.

How to check environment using SSL INSPCTION ?

  1. load https://google.com, then click the lock icon at the top left side of the URL bar.

2. In the SSL Certificate the organization name mentioned as “ISSUED BY”, you can ensure that SSL Inspection enabled in Firewall/WebSecurity devices.

If not, you are free to use an HTTPS connection with your Malicious link. you would not get the block.

DNS sinkhole

Still the malicious link is blocking by firewall check the system DNS .

If system DNS using local IP address/ In house DNS server, replace with Global DNS servers like 1.1.1.1 or 8.8.8.8.

once changed the DNS setting flush the DNS of the system by the below mention commends on CMD.

Type “ipconfig /flushdns” and press Enter.

Mostly the Malware does not contain newly registered domain details. you use newly registered domains for exploitation purposes.

Use UDP connection

Host UDP connection /UDP tunnel service from Control and command servers to bypass the old or not upgraded security devices.

A reverse TCP connection is recommended to host a control server inside the organization.

Most of the Social Engineering tools using this technique to escape from security checks.

Comments

Popular posts from this blog

KARMA - Search for leaked Emails and Passwords

Hi Everyone, In this article we going to introduce the tool is KARMA.Its used to collect pwned Email address and passwords from pwndb. The tool is written in python3. So, you must need Python3 inside your machine . INSTALL sudo apt install tor python3 python3-pip git clone https :// github . com / decoxviii / karma . git ; cd karma sudo -H pip3 install -r requirements.txt python3 bin/karma.py --help TEST All the tests were done in  Debian/Ubuntu . Search emails with the password:  123456789 python3 bin/karma.py search '123456789' --password -o test1 Search emails with the local-part:  johndoe python3 bin/karma.py search 'johndoe' --local-part -o test2 Search emails with the domain:  hotmail . com python3 bin/karma.py search ' hotmail . com ' --domain -o test3 Search email password:  johndoe@unknown.com python3 bin/karma.py target 'johndoe@unknown.com' -o test4 DEMO VIDEO