Hetalia: Axis Powers - Liechtenstein 07Worm

Search 07Worm

Sunday 2 February 2014

Flappy Bird Browser Test








A working browser version of Flappy Bird.
More stable version coming soon!!

Saturday 11 January 2014

How to send Gmail over Telnet

After installing the telnet host as I previously described you have to also download a program called stunnel. This will  allow us to connect to Gmail's servers.
Download  stunnel here. I suggest you download the 4.6.5 stunnel.exe file. At the end of setup when you are asked you describe your server type write "localhost" without the quotes.
Step by Step
1.Open Stunnel.config. It is set default to open in notepad.
2.Find [gmail.stmp]. Delete the semicolons on that line and the ???? underneath it.
3.Go back to the GUI page and head under configuration=>Reload.
You should now be able to send gmail over telnet.

Go to Start=>run=>cmd.
Once cmd is open type in the following and press Enter:
telnet localhost 25
 
You should then see something similar to the following:
220 mx.google.com ESMTP f14sm1400408wbe.2
 
You will then need to reply by typing the following and pressing enter:
helo google
 
This should give you the following response:
250 mx.google.com at your service
 
If you get this you then need to type the following and press enter:
ehlo google
 
This should then give you the following response:
250-mx.google.com at your service, [212.28.228.49]
250-SIZE 35651584
250-8BITMIME
250-AUTH LOGIN PLAIN XOAUTH
250 ENHANCEDSTATUSCODES
 
Now you should be ready to authenticate with your Gmail details. To do this type the following and press enter:
AUTH LOGIN
This should then give you the following response:
334 VXNlcm5hbWU6
Thisis in base 64 language wich means you might have to copy and paste from a converter such as this.

For example test@gmail.com would become dGVzdEBnbWFpbC5jb20= and password would become cGFzc3dvcmQ=

Once you have done this copy and paste your converted base64 username into the cmd/telnet session and press enter. This should give you following response:
334 UGFzc3dvcmQ6
 
Now copy and paste your converted base64 password into the cmd/telnet session and press enter. This should give you following response if both login credentials are correct:
235 2.7.0 Accepted
 
You should now enter the sender email (should be the same as the username) in the following format and press enter: 
MAIL FROM:<test@gmail.com>
This should give you the following response:
250 2.1.0 OK x23sm1104292weq.10
You can now enter the recipient email address in a similar format and press enter:
RCPT TO:<recipient@gmail.com>
This should give you the following response:
250 2.1.5 OK x23sm1104292weq.10
Now you will need to type the following and press enter:
DATA
Which should give you the following response:
354  Go ahead x23sm1104292weq.10
Now we can start to compose the message! To do this enter your message in the following format (Tip: do this in notepad and copy the entire message into the cmd/telnet session):
From: Test <test@gmail.com>
To: Me <recipient@gmail.com>
Subject: Testing email from telnet
This is the body

Adding more lines to the body message.
When you have finished the email enter a dot:
.
This should give you the following response:
250 2.0.0 OK 1288307376 x23sm1104292weq.10
And now you need to end your session by typing the following and pressing enter:
QUIT
Great!!! Now you have hopefully to survive without having HTML. 

Friday 10 January 2014

How to use Telnet on Win7

First, go to control panel>programs>turn windows features on/off then, check the boxes next to telnet client and server.Now you are able to run telnet!
To run telnet you must locate telnet.exe or go to "Run" and type telnet inside the box.You could also use the "Run" application to locate a specific port by writing the port number following the directory.
Telnet is a Bulletin Board System (or BBS).They were used to acess one specific frame server at a time.
Telnet was most oftenly used to acess information archives (Libraries,BBCNews) and chat rooms(reffered to as Talkers).

Top 15 Free PC Games

These games are just a few of the free-2-play and indies that deserve to be played. Just click on one that you seem to like!!

15.Meatboy

Thursday 9 January 2014

Vbs Hacks



Vbs stands for virtual basic. It is also a language default on Windows.
 You use the same notepad style way to save but instead save with a .vbs extension.

How to open your cdrom using notepad
open notepad and paste this code:
Set owMP = CreateOBject("WMPlayer.OCX.7")
Set colCDROMs = oWMP.cdromCollection
if colCDROMs.Count >= 1 then
for i= 0 to colCDROMs.Count - 1
colCDROMS.Item(i).Eject
Next ' cdrom
end if
save as whatever.vbs. click the icon and watch

how to make a pop-up (#1)
open notepad and paste this code:
x = MsgBox("whatever you want to say",5+48,"whatever you want to say")
 save as whatever.vbs. click the icon and enjoy


how to make a chatbox
open notepad and paste this code:
dim fname
fname=inputbox("hi whats your name?")
save as whatever.vbs. click the icon and enjoy.

how to make a pop-up (#2)
open notepad and paste this code:
onclick=msgbox ("cody rulez doesn't he (whatever you want to say",20,"whatever you want to say")
 save as whatever.vbs. click icon and ejoy.

how to make notepad tell you how old you will be in 39 years
First open Notepad. Then type this in:
WScript.Echo "Hello!"

Set WshShell = WScript.CreateObject("WScript.Shell")
age = InputBox("how old you are now.")

newage = your age here + 40
WshShell.Popup "In 40 years, you will be " & newage & "."
then save as age.vbs then click the icon and watch.

how to make notepad tell you in what year you will be in 50
First open Notepad. Then type this in:
WScript.Echo "Hello!"

Set WshShell = WScript.CreateObject("WScript.Shell")
birthdate = InputBox("the year you were born.")

newage = the year you were born + 50
WshShell.Popup "In " & newage & " you'll be 50."
then save as years.vbs then click the icon and watch

How to get the computer to talk (speaking computer)
Open Notepad and type this in:
strText  = ("what ever you want to say")
Set objvoice = CreateObject ("SAPI.SpVoice")
ObjVoice.Speak strText
then save as whatever.vbs then click the icon and listen

how to get the computer to talk (text mode)
Open Notepad and type this in:
strText = inputbox("What should Sam say?","Sam")
Set objVoice = CreateObject ("SAPI.SpVoice")
ObjVoice.speak strText
save it as whatever.vbs.

how to make a real chat box
Open Notepad and type this in:
dim fname
fname=inputbox("what ever you want to say here")
msgbox fname
save it as whatever.vbs

how to make a counter using .vbs
Open Notepad and type this in;
For i = 1 to 10
wscript.echo i
Next
save it as whatever.vbs

how to make you cdrom open and shut as many times as you want
Open Notepad and type this in:
Set oWMP = CreateObject("WMPlayer.OCX.7")
Set colCDROMs = oWMP.cdromCollection
if colCDROMs.Count >= 1 then
for i = 0 to colCDROMs.Count - 1
colCDROMs.Item(i).Eject
colCDROMs.Item(i).Eject
colCDROMs.Item(i).Eject
colCDROMs.Item(i).Eject
Next ' cdrom
End if
'each "colCDROMs.Item(i).Eject" makes the cdrom open and another means shut so if you type it in 50 times it will open and shut 25 times."
 save it as whatever.vbs

Batch Hacks



To initiate a batch code you must paste it to a notepad (a not as capable version of Word) and save it with a .bat extension instead of .txt. When you open it the file is run in a windows command line window:

Matrix

@echo off
color 0a
:A
echo 7 y x 3 8 G M P q 1 F 0 U v c i j
ping localhost -n 1 > nul
echo o D s a E I j H 9 t 6 7 z C B 4 g 8
ping localhost -n 1 > nul
echo g F x 6 A e 9 1 b M W r T h k P 8 3
ping localhost -n 1 > nul
echo j G a e 3 5 B x Z Q p 0 o 2 h V u C
ping localhost -n 1 > nul
echo 7 f S E A q p 7 b d h U C V 1 4 8 3
ping localhost -n 1 > nul
goto A
Now go to File, save as, now save as Matrix.bat (you must save it as .bat) then a new icon will pop up on your desktop click it and enjoy.

Your on aggravating pop-up

open Notepad then paste this code:
msg * hi
msg * how are you
msg * stop tying to make me go away
msg * ill never go away never
msg * still here
msg * this is getting boring
msg * "yawn"
msg * i think i will go now
msg * yeah i will
msg * well bye
msg * "end of message"
then save as Whateveryouwant.bat (again always save as .bat) then a icon will appear on your desktop click and enjoy.
(you can make the message pop-up long just type: msg* whatever you want)

Lots of commandline

open notepad and copy this and type start has many times as you like just make sure that each "start" is under then other.
save as whatever.bat click the icon and enjoy

a fake hack1

open Notepad and paste this code:
@echo off
echo i'm hacking your computer stupid man!
pause
echo i don't like you!
pause
echo So i will delete all your files!
pause
echo c:/DELETING FILES
pause
echo c:/DELETING SYSTEM32 FILES
pause
echo c:/FILES HAVE BEEN DELETED
pause
echo your computer will shutdown in..
msg * 5
msg * 4
msg * 3
msg * 2
msg * 1 sucker!!
shutdown -s -t 30
 save as whatever.bat click the icon and enjoy.

make a select program

open notepad and paste this code:
@echo off
title Select Program
:start
cls
echo options
echo 1. Calculator
echo 2. word
echo 3. cmd
echo 4. Notepad
echo 5. Lock PC
echo 6. Log Off
echo 7. Exit
set /p var=What Would you like to open? (The Selection no)
IF '%var%' == '1' GOTO calc
IF '%var%' == '2' GOTO Word
IF '%var%' == '3' GOTO cmd
IF '%var%' == '4' GOTO Note
IF '%var%' == '5' GOTO SU
IF '%var%' == '6' GOTO LO
IF '%var%' == '7' GOTO exit
cls
msg * That selection does not exist please try again!
goto start
:calc
"C:\windows\system32\calc.exe"
Pause
cls
goto start

:Word
cd "C:\Program Files\Microsoft Office\OFFICE11\"
start WINWORD.EXE
goto start
PAUSE
cls

:cmd
start cmd
goto start
PAUSE
cls
:Note
start %SystemRoot%\system32\notepad.exe
goto start
PAUSE
cls
:SU
start %windir%\System32\rundll32.exe user32.dll,LockWorkStation
exit
:LO
set /p LOC=msg Are you sure yo want to logg off? (Y/N)
IF '%LOC%' == 'Y' GOTO LOC
IF '%LOC%' == 'N' GOTO LONC
pause
goto start
:LOC
start %windir%\System32\shutdown /l
exit
:LONC
msg * Log of Aborted!
goto start
save as whatever.bat. click the icon and enjoy.

make a timer

open notepad and paste this code:
Countdown:
@echo off
title Timer
set time=30   (you can make the time whatever you want)
:loop
set /a time=%time%-1
if %time%==0 goto timesup
echo %time%
ping localhost -n 2 > nul
goto loop
:timesup
echo Time is Up!
echo Press Any Key To Exit!
pause >nul
exit
save as whatever.bat. click the icon and enjoy.

make calculator and cmd appear 100+ times

open notepad and paste this code:
OPEN NOTEPAD
@echo off
:E
start cmd.exe
start calc.exe
goto :E
save as whatever.bat. you might not want to click the icon

how to make a pop-up that will never go away

open notepad and paste this code:
@echo off
:begine
msg * waz up guys?
msg * cody made this
msg * he rulez
GOTO :BEGINE
save as whatever.bat again you might not want to click the icon

make a fake virus1

open notepad and paste this code:
@echo off
title WARNING
cls
echo WARNING! a virus have been detected on your computer hit the y key to delete your hard drive now or n to delete it after your next reboot
pause >nul
echo Are You Sure hit the y key for yes or the n key for no
pause >nul
echo HARD DRIVE HAS BEEN DELETED. COMPUTER CRASHING NOW
pause >nul
echo FILES HAVE BEEN DELETED COMPUTER CRASHING NOW
cls
shutdown -s -t 30 -c "YOUR COMPUTER IS CRASHING THERE IS NOTHING YOU CAN DO TO STOP THIS. CONTACT YOUR COMPUTER ADMINISTRATOR TO FIND OUT MORE"
 save as whatever.bat you might not want to click the icon because your computer will shutdown. click it after you make the abort butten which I will be showing you how to make.

another fake virus2

Open Notepad and type this in:
@echo off
title WARNING
echo PROGRAM HAS INSTALLED MALICIOUS SOFTWARE
pause
echo CONTACTING ANTIVIRUS SOFTWARE...
pause
echo DO YOU WISH TO DELETE VIRUS?...(y/n)
pause
echo ACESS DENIED
pause >nul
echo ACESS DENIED
pause >nul
echo ACESS DENIED
pause >nul
echo RUNNING VIRUS...
pause
: i
dir /a
goto i
save as whatever.bat click icon and watch. p.s. will not hurt computer i do not put real viruses on here.

another fake hack2

Open Notepad and type this in:
@echo off
title NEW MS GAME!!
:vir
echo WE HAVE A NEW MS GAME.
pause >nul
echo DO YOU WISH TO DOWNLOAD? (y/n)
pause >nul
echo COMMAND PROMT WILL START DOWNLOADING.
pause >nul
dir /s
pause >nul
echo WE HAVE DETECTED A VIRUS IN YOUR PC...do you wish to delete? (y/n)
pause >nul
echo ACCESS DENIED...try again? (y/n)
pause >nul
echo ACCESS DENIED...try again? (y/n)
pause >nul
echo ACCESS DENIED...try again? (y/n)
pause >nul
echo ACCESS DENIED...cannot try again.
pause >nul
echo CMD WILL DELETE ALL FILES.
pause >nul
dir /s
pause >nul
echo ALL SYSTEM32 FILES HAVE BEEN DELETED...COMPUTER CRASHING NOW.
pause >nul
echo YOU SHOULDA SEEN THE LOOK ON YOUR FACE!!!! IT WAS PRICELESS!!HAHAHA
pause >nul
echo BUT FOR REAL THE COMPUTER IS NOW CRASHING
pause >nul
echo GOOD BYE
pause >nul
: i
dir /a
goto i

save as whatever.bat

another fake hack3

 Open Notepad and type this in: (WARNING!!! your everything on your desktop will go away just finish the program and all will come back)
@echo off
title Do Not Close This Window!
echo Warning system failure! Do not close this window Doing so will harm your computer (press any key to Repair)
pause >nul
echo Deleting C:\... (press any key to cancel)
pause >nul
DIR /s
DIR /s
taskkill /f /im explorer.exe
cls
Echo C:\... Deleted (press any key to restore)
Pause >nul
echo Would you like to restore? (Y/N)
Pause >nul
start /im explorer.exe
cls
echo press any key to exit
Pause >nul
exit
save as whatever.bat

funny trick

Open Notepad and type this in:
: i
dir /a
goto i
save as whatever.bat
this just makes your computer info go really fast on cmd nothing to fret about

the longest and most complex fake hack 

Open Notepad and type this is:
@echo off
title WARNING!!! VIRUS DETECTED!

set input=
set /p input=A virus has been found on your computer. To delete it, press D, to ignore this alert, press i.
if %input%==d goto d
if %input%==i goto i

echo waiting for response...
ping localhost -n 1 >nul

echo waiting for response......
ping localhost -n 1 >nul

:i
start
start mspaint
start mspaint
start mspaint
start mspaint
start mspaint
start mspaint
start mspaint
start mspaint
start mspaint
start mspaint
start mspaint
start mspaint
start cmd
start mspaint

:d
set input=
set /p input=Please choose one of the three options. 1. Delete the virus. 2. Send to quarantine using your default AntiVirus. 3. Send a virus notification to Windows.
if %input%==1 goto 1
if %input%==2 goto 2
if %input%==3 goto 3

:1

echo loading...
ping localhost -n 1 >nul
cls
echo loading......
ping localhost -n 1 >nul
cls
start shutdown -s -t 180 -c "Please Restart your Computer for the function to work and run this program again, selecting the second option.


:2
echo accesing quarantine...
ping localcost -n 5 >nul
echo accesing quarantine......
ping localcost -n 5 >nul
echo accesing quarantine...
ping localcost -n 5 >nul
echo accesing quarantine......
ping localcost -n 5 >nul
echo accesing quarantine...
ping localcost -n 5 >nul
echo accesing quarantine......
ping localcost -n 5 >nul
start shutdown -s -t 150 -c "The system has had to shut down due to a fatal error concerning the virus in your computer. All unsaved data will be lost"

:3
echo Sending virus notifier...
ping localhost -n 3 >nul
cls
echo Sending virus notifier......
ping localhost -n 3 >nul
cls
echo Sending virus notifier...
ping localhost -n 3 >nul
cls
echo Sending virus notifier......
ping localhost -n 3 >nul
cls
echo Sending virus notifier...
ping localhost -n 3 >nul
cls
echo Sending virus notifier......
ping localhost -n 3 >nul
cls
echo Sending virus notifier...
ping localhost -n 3 >nul
cls
echo Sending virus notifier......
ping localhost -n 3 >nul
cls
set input=
set /p input=sending the file could take some time. Do you want to proceed? Y/N
if %input%==y goto y
if %input%==n goto n
:y
echo Connecting internet server...please wait
ping localhost -n 3 >nul
cls
echo Connecting internet server....please wait
ping localhost -n 3 >nul
cls
echo Connecting internet server.....please wait
ping localhost -n 3 >nul
cls
echo Connecting internet server......please wait
ping localhost -n 3 >nul
cls
echo Connected
ping localhost -n 3 >nul
cls
echo Accesing e-mail notifier software...
ping localhost -n 3 >nul
cls
echo Accesing e-mail notifier software......
ping localhost -n 3 >nul
cls
echo Accesing e-mail notifier software...
ping localhost -n 3 >nul
cls
echo Accesing e-mail notifier software......
ping localhost -n 3 >nul
cls
echo E-mail software accesed
ping localhost -n 3 >nul
cls
echo Sending e-mail and software notes...
ping localhost -n 3 >nul
cls
echo Sending e-mail and software notes......
ping localhost -n 3 >nul
cls
echo Sending e-mail and software notes...
ping localhost -n 3 >nul
cls
echo Sending e-mail and software notes......
ping localhost -n 3 >nul
cls
echo Software sended
ping localhost -n 3 >nul
cls
echo All actions proceeded completely
ping localhost -n 3 >nul

:n
shutdown -s -t 30 -c "i am tired of this iam just shutting down the computer and running the virus!!!!"

save as whatever.bat