This forum is in archive mode. You will not be able to post new content.

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.


Messages - Infinityexists

Pages: [1] 2 3 ... 5
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
Hacking and Security / Re: Hacking phones via bluetooth these days
« on: May 24, 2012, 11:29:28 PM »
In the newer days people let their cars be vulnerable (driving peacefully down the road, suddenly speakerphone turn on, "I am watching you...". As a brutal example)

http://trifinite.org/trifinite_stuff.html


+1 for that, great share


btw, what about laptop to bluethooth hack , i know it is possible , but do you have any idea how can i do it ?

3
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.

4
Hacking and Security / Re: Back door
« on: May 02, 2012, 07:35:23 PM »
Any one know any good (and free) back door programs that wont set off ten thousand anti virus alerts? Preferably something that can be hidden in an email, and is open source. Target is a win 7 laptop.


Also and unrelated, any one know of a back door that can be operated from a phone?


what exactly you want to achieve ?
please elaborate i might code you a custom backdoor program

5
What do wou mean, that you cannot simply explore it with a web browser? Well, you can.

This is exactly what i mean , could you further elaborate ?
after successfully enabling the ftp in a victim PC through firewall how can i access it through my browser ?
I know how to simply put data through FTP onto my server from the victim pc but what about browsing his PC using FTP without the need of data being uploaded to my server ?

ftp://user:pass@ftpserver.com:21
You can view FTP in a web browser as well ^^


This is exactly what i want but how to establish the FTP server ?

6
You don't need an http server to share files. FTP / SFTP / Netcat / SSH / code something custom.


I'm very well aware of using FTP to upload files but you can't use ftp/sftp/netcat/ssh in the way you can use http server, which is why i asked for it,




7
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'

8
General discussion / Re: I want to start the Website
« on: April 29, 2012, 12:32:01 AM »
About the blog idea. Is is great. But one needs to have stuff to post there and also time to write the stuff.

Other ideas? If you play online and have clans in games, make a website for your clan. With a forum and all.


Gaming totally sucks, i need the unique idea , something special
although the tshirt idea was good but i can't start the website on that right now

9
General discussion / Re: I want to start the Website
« on: April 27, 2012, 10:12:24 PM »
Just design the website to gain experience designing ecommerce sites, another thing I would recommend is going to www.elance.com and look at some of the job postings for php/mysql/ajax and pick out random jobs and design them, check out the job postings there will also give you ideas for sites to design as well.  Once you become confident with web dev start doing some freelance work off of www.elance.com, that's what I plan on doing.  I'm taking a 5 month vacation this winter and all I'm going to do is study php/mysql/js/web design like a crazy person, then I'll hopefully be able to start programming for money, that's my hope at least.


Designing and maintaining the website is a non-issue , the issue is how i'm gonna design such t-shirts as i have no sources/friends who is Fashion Designer or blah blah...

10
General discussion / Re: I want to start the Website
« on: April 27, 2012, 08:57:29 PM »
I like Axon's idea, porn rocks!!!!!!!!!!!!!

I have a couple websites I want to start but haven't since I'm lazy, one of them is going to be a user submited recipe site for alcoholic beverages like beer and wine :)  I just ordered my beer making kit so I'll be starting that in a couple months.

You should try and think of a website that might make some money like a tshirt website, tshirts are huge on the internet, try to make a copy of www.tshirthell.com or www.cafepress.com


your idea about tshirts is awesome, but i have no sources to produce or design such tshirts :p

11
Hacking and Security / Re: School network, got the admin's password
« on: April 27, 2012, 05:21:45 PM »
better?


change it to white for clear visibility

12
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.

13
In case that is the answer to me: I didn't ask for the code of the whole trojan. But the part of the SMS notification implementation could still be interesting for others and that usually does no harm.
It is nice to know that you code and learn a lot, but I really would like to see something, that I (or others) can learn from too.


It wasn't the answer to you bro ! :)
I'll surely share the source code of that sms thing very soon

14
Hacking and Security / Re: Unstoppable CD-ROM ejection Attack
« on: April 25, 2012, 04:23:16 PM »
This works great, I just tried it. Simple, clean, and easy fix. Fun to give to your friends or family to mess around with them.

I lol'd at jubayernil's post.


I'm glad that people are actually using my Script :)


@iTpHo3NiX:


your code seems so cool :)
there are few clever techniques that could come handy too , I've copied it into my collection.
P.S: Thanks a lot for considering replying into my thread with such a useful stuff :)

15
Hacking and Security / Re: Unstoppable CD-ROM ejection Attack
« on: April 23, 2012, 12:15:55 PM »
I just want to stop CD-ROM eject.......please help me.


go to the startup directory of your windows , most probably you'll find it in Start menu, \
and delete script.vbs file from there, if you couldn't find the script.vbs file from start menu then search it in your C:/ drive and then delete it

Pages: [1] 2 3 ... 5


Want to be here? Contact Ande, Factionwars or Kulverstukas on the forum or at IRC.