handskan.txt Hand skanning information and source code .................................................................. I wrote handjob.bas for personal use. As such it is a very simple program to aid in hand skanning sequentally, saving output as handskan.txt Features: -"Blind Mode"; Re-maps numeric keypad, DTMF style. (idealy, for use with brainwave machine, see; hackcanada.com/homegrown/wetware/brainwave -Logs the time spent scanning Considering........................................................ A modem routine would aid speed, assuming you have headphones to plug into your modem. Then random scanning could then be implemented. I have read some txt's mentioning random scanning as being safer, this is no longer true. An SS#7 node enroute will detect random or sequential scanning as a killer trunk, and a switchman will get a trouble ticket. Killer trunks are dysfunctional in that they will terminate properly, but not maintain a connection. Usually they just 'fix themselves', but extended scanning/wardialing sessions will be cause for attention. Response time or the priority of such a trouble ticket to a particular switchman is irrelevant. In Alberta Canada--according to my phonebook-- you have nothing to fear. Now, if you are selling anything, you need a telemarketing permit. If you phone abunch of people and just hangup to see whats on the other end, that will get you in trouble. You must have intent to communicate. If you use handjob.bas to aid you in logging, spend the time to say hi or whatever, and apologize for misdialing. Even if Mr. Telco does give you a ring ring, you can then say, hey, ain't no thing. You merely forgot your friends number, and thought it would be faster to dial X amount of numbers to get ahold of him/her. (be sure and tell them you have yet to reach your imaginary friend so you are not giving up yet. (no dont really tell them he/she/they are/is imaginary)) The math says 10,000 numbers could be dialed @20sec per number in 2days 4hrs 30min if completed without breaks. One day, i am going to scan some toll free prefix in under 3 days, and see if Telus leaves for me some funny voice mails. Anyone want to race? First one to 5000 wins the other persons 0hday! (after they've finished their half, ofcourse) Long distance scanning can be a cake walk if you ask your mom to buy you a phone card that supports the *** or some king of 'backup' command to place another call, so you are saved redialing the extender. I imagine the carrier would frown upon this, so go with a larger company. Props to the Canadians for tolerating my antics. Shouts to the HackCanada crew and associates for support. Tips for extended periods of scanning................................ Blind mode mnemonics: Using the following mnemonics as a legend for the output you can use the numeric keypad, DTMF style to specify what was reached. [A]utomated Attendant(answer machine) [B]usy [C]arrier [D]isconnected [E]xtender [F]ax [H]uman [L]ong distance [M]obile [N]IS(not in service) [O]ut of area(N/A from your loc) [P]BX [R]ings out [S]IT [T]one(s) [U]navailable at this time [V]oice Mail e[X]tender [W]ARE[Z] The pseudo re-mapping is compliant with ITU-T Recomendations(E-Series): 1 2 3 ABC DEF 4 5 6 GHI JKL MNO 7 8 9 PQRS TUV WXYZ * 0 # This will save some time in the long run when you encounter a block of numbers that are not in use. You might consider reefing a keypad from a telephone to replace the numeric keypad. Voice recognition is another fun idea. I recomend reading the book; The Power Of Concentration available from guttenberg.org [Etext #1570] While you might not get to talk to many people in scanning after hours, i find this is a good time to develop my female voice. Now, i have a very deep voice, with practise i have been able to pull off a convincing chick instead of just a granny. This is obviously beneficial for social engineering. You might start by humming at a higher pitch till you find the correct modulation, you will then be able to keep any manhood out of your feminized voice while expressing female laughter and emotion. The difference between the average male voice and the average female voice is only about 1/2 octave. Its not the pitch, but the resonance. Reference; I concur with http://heartcorps.com/journeys/voice.htm for the most part, but with practise you should not need to pay for such lessons. As you may already know, sitting in one position for too long is not comfortable. You can develop a Repititive Strain Injury from hacking and in this case, phreaking. You may not feel the pain/strain as your mind is inundated by other, more important datum. Here is a url with simple pictures and descriptions of some integral stretches to prevent RSI and prolong comfort; http://web.mit.edu/atic/www/rsi/RSIMIT/exercise.html <3 Love phlux ------------------handjob.bas-----------8<-----------handjob.bas--------------- REM phlux's handjob.bas(apart of handskan.txt) DECLARE SUB copout () INPUT "AHOY! What was the last # inputted to handskan.txt?(enter 0 for 0hday)?", scanrange% INPUT "Stop scanning at what # ?", stopscan% PRINT "If you would like to stop the handjob prematurely, key in 31337 then whack Enter" OPEN "handskan.txt" FOR APPEND AS #1 PRINT #1, TIME$ CLOSE #1 DO scanrange% = scanrange% + 1 PRINT scanrange% INPUT "whats on tha blower?!", alpha$ IF alpha$ = "1" THEN alpha$ = "[P]" IF alpha$ = "11" THEN alpha$ = "[Q]" IF alpha$ = "111" THEN alpha$ = "[R]" IF alpha$ = "1111" THEN alpha$ = "[S]" IF alpha$ = "2" THEN alpha$ = "[T]" IF alpha$ = "22" THEN alpha$ = "[U]" IF alpha$ = "222" THEN alpha$ = "[V]" IF alpha$ = "3" THEN alpha$ = "[W]" IF alpha$ = "33" THEN alpha$ = "[X]" IF alpha$ = "333" THEN alpha$ = "[Y]" IF alpha$ = "3333" THEN alpha$ = "[Z]" IF alpha$ = "4" THEN alpha$ = "[G]" IF alpha$ = "44" THEN alpha$ = "[H]" IF alpha$ = "444" THEN alpha$ = "[I]" IF alpha$ = "5" THEN alpha$ = "[J]" IF alpha$ = "55" THEN alpha$ = "[K]" IF alpha$ = "555" THEN alpha$ = "[L]" IF alpha$ = "6" THEN alpha$ = "[M]" IF alpha$ = "66" THEN alpha$ = "[N]" IF alpha$ = "666" THEN alpha$ = "[O]" IF alpha$ = "8" THEN alpha$ = "[A]" IF alpha$ = "88" THEN alpha$ = "[B]" IF alpha$ = "888" THEN alpha$ = "[C]" IF alpha$ = "9" THEN alpha$ = "[D]" IF alpha$ = "99" THEN alpha$ = "[E]" IF alpha$ = "999" THEN alpha$ = "[F]" IF alpha$ = "0" THEN alpha$ = "[ ]" IF alpha$ = "31337" THEN CALL copout IF alpha$ = "97991" THEN CALL copout INPUT "good on ya, anything else to add?"; comments$ OPEN "handskan.txt" FOR APPEND AS #1 PRINT #1, scanrange%; SPC(-1); alpha$; SPC(1); comments$ CLOSE #1 REM SHELL backup.bat REM backup.bat conains the command: copy handskan.txt X:\ /Y LOOP WHILE scanrange% <= stopscan% - 1 CALL copout SUB copout OPEN "handskan.txt" FOR APPEND AS #1 PRINT #1, TIME$ CLOSE #1 PRINT "A drunk indian once said: you're only queer if you're on the bottom" SYSTEM END SUB ------------------handjob.bas-----------8<-----------handjob.bas---------------