Sinisterly
Change The Windows Title Of IE - Printable Version

+- Sinisterly (https://sinister.li)
+-- Forum: Computers (https://sinister.li/Forum-Computers)
+--- Forum: Operating Systems (https://sinister.li/Forum-Operating-Systems)
+--- Thread: Change The Windows Title Of IE (/Thread-Change-The-Windows-Title-Of-IE)



Change The Windows Title Of IE - Codebreaker - 02-23-2011

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





RE: Change The Windows Title Of IE - V1P3R - 02-23-2011

epic tutorial Biggrin
keep it up bro


RE: Change The Windows Title Of IE - 1234hotmaster - 02-23-2011

cool tut Smile

i wish there was a way for Firefox as well Biggrin


RE: Change The Windows Title Of IE - H3ROiN - 02-23-2011

what is the source foe the vb project


RE: Change The Windows Title Of IE - 1234hotmaster - 02-23-2011

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()



RE: Change The Windows Title Of IE - Codebreaker - 02-23-2011

(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





RE: Change The Windows Title Of IE - shiniga - 06-30-2011

i was searching this a long time ago, thanks man


RE: Change The Windows Title Of IE - Codebreaker - 07-02-2011

(06-30-2011, 10:46 PM)shiniga Wrote: i was searching this a long time ago, thanks man
No Problem!! Biggrin
Enjoy!