Login Register






Change The Windows Title Of IE filter_list
Author
Message
Change The Windows Title Of IE #1
A WAY TO CHANGE THE WINDOWS TITLE OF YOUR IE
By Codebreaker

Go To -> Start -> Run -> Regedit

Code:
HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main

Look For "Window Title"
If u can not find it
Then We Need To Create One So Right click -> New -> String Value -> New Value #1 Will Be Created, Change it To "Window Title"
Double Click On it -> In Value Data Box
Write Anything u want, example : Hacked By Codebreaker
Then Click Ok Or Enter

Restart IE

NOW You can c on the IE windows title, the website that ur using + "Hacked By Codebreaker"

--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
Well You can make a tool in visual basic that u write in a textbox: "Hacked By Codebreaker"...
click build -> send it to ur victim, when he opens it, it changes the windows title to (Hacked By Codebreaker)
---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

Note: If ur not good at pc and stuff, don't ever play with regedit...



Reply

RE: Change The Windows Title Of IE #2
epic tutorial Biggrin
keep it up bro
valar morghulis

Reply

RE: Change The Windows Title Of IE #3
cool tut Smile

i wish there was a way for Firefox as well Biggrin
Pierce the life fibers with your drill.

Reply

RE: Change The Windows Title Of IE #4
what is the source foe the vb project
[Image: tumblr_lawowkq1WB1qd0ix2o1_500.png]

Reply

RE: Change The Windows Title Of IE #5
If the value already exists:

Code:
My.Computer.Registry.SetValue("HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\Main", "Windows Title", "your text here", Microsoft.Win32.RegistryValueKind.DWord)

If it doesn't:

Code:
Dim regKey As Microsoft.Win32.RegistryKey regKey = Microsoft.Win32.Registry.CurrentUser.OpenSubKey("Software\Microsoft\Internet Explorer\Main", True) regKey.CreateSubKey("Window Title") regKey.Close()
(This post was last modified: 02-23-2011, 06:44 PM by Skullmeat.)
Pierce the life fibers with your drill.

Reply

RE: Change The Windows Title Of IE #6
(02-23-2011, 04:17 PM)V1P3R Wrote: epic tutorial Biggrin
keep it up bro
Thanks Man Smile
I Will

(02-23-2011, 04:22 PM)1234hotmaster Wrote: cool tut Smile

i wish there was a way for Firefox as well Biggrin

Yeah :/ There might be some ways but not in regedit
and Thanks for commenting

(02-23-2011, 04:41 PM)H3ROiN Wrote: what is the source foe the vb project

1234hotmaster commented on ur question!
but dude before asking try to figure it out, its simple, dont be a noob Smile
thanks for ur cmnt anw



Reply

RE: Change The Windows Title Of IE #7
i was searching this a long time ago, thanks man

Reply

RE: Change The Windows Title Of IE #8
(06-30-2011, 10:46 PM)shiniga Wrote: i was searching this a long time ago, thanks man
No Problem!! Biggrin
Enjoy!

What's A Signature :O

Reply