- The net commands are used to enumerate information from the Local Area Network (LAN).
- Once a NULL session has been established, any shares these hosts will be displayed as well.
- Create null session first as mentoined in old posts.
- Run the syntax: net
- From a DOS prompt, type the syntax: net view
- This technique only works on the LAN and not on the Internet. Type command syntax: net view /domain
WELCOME
Tuesday, January 31, 2012
Learn How to Enumerate Hosts and Domains of LAN using Net Commands
Hacking Tool: DumpSec | How to Establish NULL session with target system
Saturday, January 14, 2012
How does a Cricket Commentator describe a Nude Girl ??
How does a cricket commentator describe a nude girl?
ANSWER:
There is no cover, no extra cover, no slip, but 2 silly points &
2 fine legs, a deep gully... and little grass on the pitch!
Will be bit wet as the match progress.
Anyway it's going to be a fine batting pitch.
Good for googlies and better for finger spin......
ABCD of Love
ABCD of Love
A - Absolutely adore each other
B - Be best friends
C - Compromise
D - Discover new things together
E - Encourage each other
F - Forgive and forget
G - Gaze into each others eyes
H - Hold hands and hug a lot
I - Inspire and intrigue each other
J - Joke and laugh and have fun
K - Kiss Kiss Kiss ;-)
L - Love with all your hearts
M - Marvel at each other's talents
N - Nuture each other's soul
O - Overcome problem together
P - Play games
Q - Quiet each other's fears
R - Remember the little things
S - Say "I love you" everyday
T - Take time for tenderness
U - Understand and care deeply
V - Value everything you share
W - Wish on stars together
X - X-press your true feelings
Y - Yearn for each other's touch
Z - Zzzzz in each other's arm
Million $ Questions
A: So that sperms can at least enjoy the scene even if their entry is Restricted!
Signboard outside a prostitute's house:
Married MEN not allowed. We serve the needy, not the greedy....
New AIDS awareness slogan:
Try different positions with the same woman instead of same position with different women.
Why is $ex like shaving?
Well, because no matter how well you do it today... tomorrow you'll have to do it again...
Q: What will happen if earth rotates 30 times faster?
A: Men will get their salary everyday and women will bleed to death.
Q: Why do 90% gals have left boob bigger than right?
A: Bcoz 90% boys are right handed.
Q: What is the difference between an UNDERWEAR & a STAGE CURTAIN?
A: When you pull down the STAGE CURTAIN, the show is over, but when you pull down the UNDERWEAR...... it is SHOWTIME!
Q: What is the similarity between a wife and a chewing gum?
A: Both are sweet in the beginning but become tasteless and shapeless later
Advantages of having an affair with a married women.
They give like hell.
They do not yell.
They do not tell.
They do not swell and there is no wedding bell!
12-10 .... Old Shows .... GREAT !!!
Beauty of English
Ever noticed how deleting one word after the other in a sentence can
lead to a nice story? Here's an example:
Oh John please don't touch me at all...!
Oh John please don't touch me...!
Oh John please don't touch...!
Oh John please don't...!
Oh John please...!
Oh John..!
Ohhh......
Questions you can Never Answer
It simply means that you value the relationship much more than yo
vDefinitions, some of them new (to me)
These fit so well they should be in a dictionary.
ADULT:
A person who has stopped growing at both ends
and is now growing in the middle.
BEAUTY PARLOR:
A place where women curl up and dye.
CHICKENS:
The only animals you eat before they are born and after they are dead.
COMMITTEE:
A body that keeps minutes and wastes hours.
DUST:
Mud with the juice squeezed out.
EGOTIST:
Someone who is usually me-deep in conversation.
HANDKERCHIEF:
Cold Storage.
INFLATION:
Cutting money in half without damaging the paper.
MOSQUITO:
An insect that makes you like flies better.
RAISIN:
A grape with a sunburn.
SECRET:
Something you tell to one person at a time.
SKELETON:
A bunch of bones with the person scraped off.
TOOTHACHE:
The pain that drives you to extraction.
TOMORROW:
One of the greatest labor saving devices of today.
YAWN:
An honest opinion openly expressed.
Temporarily Disable "Restart Now" Dialog from XP's Automatic Updates
Automatic Updates is a great feature. Your computer stays protected from threats without worrying about it… but if it's 3am and I'm trying to play a video game, the last thing I want is for the automatic updates to pop up and remind me every 5 minutes that I need to reboot, interrupting my game… Drives me crazy!
Dear Restart Dialog,
I hate you.
If you want to temporarily disable this popup message and delay rebooting, you can go about it one of two ways. I'm a command line junkie, so I just type this into a command prompt (make sure you use the quotes)
net stop "automatic updates"
Or you can open Control Panel \ Administrative Tools \ Services and click Stop on automatic updates.
Do not disable the automatic updates service, just stop it. The next time you start up your computer, it will restart.
Note: If you open the Automatic Updates icon in Control Panel, it will automatically restart the service, which will make the dialog start popping up again.
Basics of Javascript Injection
I. Injection Basics
JavaScript injections are run from the URL bar of the page you are visiting. To use them, you must first completly empty the URL from the URL bar. That means no "http://" or whatever.
JavaScript is run from the URL bar by using the javascript: protocol. In this tutorial I will only teach you the bare bones of using this, but if you are a JavaScript guru, you can expand on this using plain old JavaScript.
The two commands covered in this tutorial are the alert(); and void(); commands. These are pretty much all you will need in most situations. For your first JavaScript, you will make a simple window appear, first go to any website and then type the following into your URL bar:
javascript:alert(’Hello, World’);You should get a little dialog box that says “Hello, World”. This will be altered later to have more practical uses.
You can also have more than one command run at the same time:
javascript:alert(’Hello’); alert(’World’);This would pop up a box that said ‘Hello’ and than another that says ‘World’.
II. Cookie Editing
First off, check to see if the site you are visiting has set any cookies by using this script:
javascript:alert(document.cookie);This will pop up any information stored in the sites cookies. To edit any information, we make use of the void(); command.
javascript:void(document.cookie=”Field = myValue”);This command can either alter existing information or create entirely new values. Replace “Field” with either an existing field found using the alert(document.cookie); command, or insert your very own value. Then replace “myValue” with whatever you want the field to be. For example:
javascript:void(document.cookie=”Authorized=yes”);Would either make the field “authorized” or edit it to say “yes”… now whether or not this does anything of value depends on the site you are injecting it on.
It is also useful to tack an alert(document.cookie); at the end of the same line to see what effect your altering had.
III. Form Editing
Sometimes, to edit values sent to a given website through a form, you can simply download that html and edit it slightly to allow you to submit what you want. However, sometimes the website checks to see if you actually submitted it from the website you were supposed to. To get around this, we can just edit the form straight from javascript. Note: The changes are only temporary, so it’s no tuse trying to deface a site through javascript injection like this.
Every form on a given webpage (unless named otherwise) is stored in the forms[x] array… where “x” is the number, in order from top to bottom, of all the forms in a page. Note that the forms start at 0, so the first form on the page would actually be 0, and the second would be 1 and so on. Lets take this example:
Note:Since this is the first form on the page, it is forms[0]
Say this form was used to email, say vital server information to the admin of the website. You can’t just download the script and edit it because the submit.php page looks for a referer. You can check to see what value a certain form element has by using this script:
javascript:alert(document.forms[0].to.value)This is similar to the alert(document.cookie); discussed previously.
In this case, It would pop up an alert that says “admin@website.com”
So here’s how to Inject your email into it. You can use pretty much the same technique as the cookies editing shown earlier:
javascript:void(document.forms[0].to.value=”email@nhacks.com”)This would change the email of the form to be “email@nhacks.com”.
Then you could use the alert(); script shown above to check your work. Or you can couple both of these commands on one line.
That completes this post about JavaScript injection as you can see all kinds of fun things can be done with these techniques. Use your imagination and with a little work you can test your site and keep it secure from malicious hackers.
List of Useful Easy Run Command For MS Outlook
Click start > run> insert run command > hit OK
/cleanautocompletecache
Removes all names from the AutoComplete list
e-mail addresses from the AutoComplete list
Work with Version – 2010
/cleancategories
Deletes any custom category names that you have created.
Restores categories to the default names.
Work with Version – 2007,
Work with Version – 2010
/cleanclientrules
Deletes client-based rules.
Work with Version – 2003,
Work with Version – 2007,
Work with Version – 2010
/cleanprofile
Removes invalid profile keys and recreates default registry keys where applicable.
Work with Version – 2003,
Work with Version – 2007
/cleanpst
Launches Outlook with a clean Personal Folders file (.pst)
Work with Version – 2003
/cleanreminders
Clears and regenerates reminders.
Work with Version – 2000,
Work with Version – 2002/XP,
Work with Version – 2003, Work
with Version – 2007,
Work with Version – 2010
/cleanroamedprefs
All previous roamed preferences are deleted and copied again from the local settings on the computer where this switch is used. This includes the roaming settings for reminders, free/busy grid, working hours, calendar publishing, and RSS rules.
Work with Version – 2007,
Work with Version – 2010
/cleanrules
Starts Outlook and deletes client- and server-based rules.
Work with Version – 2003,
Work with Version – 2007,
Work with Version – 2010
/cleanserverrules
Starts Outlook and deletes server-based rules.
Work with Version – 2003,
Work with Version – 2007,
Work with Version – 2010
/cleansharing
Removes all RSS, Internet Calendar, and SharePoint subscriptions from Account Settings, but leaves all the previously downloaded content on computer. This is useful if you cannot delete one of these subscriptions within Outlook
Work with Version – 2010
/cleansniff
Deletes duplicate reminder messages
Work with Version – 2003,
Work with Version – 2007,
Work with Version – 2010
/cleansubscriptions
Deletes the subscription messages and properties for subscription features.
Work with Version – 2003,
Work with Version – 2007,
Work with Version – 2010
/nocustomize
Starts Outlook without loading outcmd.dat (customized toolbars) and *.fav file.
Work with Version – 2003,
Work with Version – 2007
/noextensions
Starts Outlook with extensions turned off, but listed in the Add-In Manager.
Work with Version – 2003,
Work with Version – 2007
/nopollmail
Starts Outlook without checking mail at startup.
Work with Version – 2003
/nopreview
Starts Outlook with the Reading Pane off and removes the option from the View menu.
Work with Version – 2000,
Work with Version – 2002/XP,
Work with Version – 2003,
Work with Version – 2007,
Work with Version – 2010
/regserver
Rewrites all Outlook specific registry keys and re-associates file extensions without having to reinstall Outlook or run setup with the /y switch. The settings are stored in the Outlook.srg file located in the same folder as the Outlook program.
Work with Version – 2000,
Work with Version – 2002/XP
/resetfoldernames
Resets default folder names (such as Inbox or Sent Items) to default names in the current Office user interface language. For example, if you first connect to your mailbox Outlook using a Spanish user interface, the Spanish default folder names cannot be renamed. To change the default folder names to another language such as Japanese or English, you can use this switch to reset the default folder names after changing the user interface language or installing a different language Work with Version of Outlook.
Work with Version – 2002/XP,
Work with Version – 2003,
Work with Version – 2007,
Work with Version – 2010
/resetfolders
Restores missing folders for the default delivery location.
Work with Version – 2000,
Work with Version – 2002/XP,
Work with Version – 2003,
Work with Version – 2007,
Work with Version – 2010
/resetoutlookbar
Rebuilds the Outlook Bar.
Work with Version – 2000,
Work with Version – 2002/XP
/resetnavpane
Clears and regenerates the Navigation Pane for the current profile.
Work with Version – 2003,
Work with Version – 2007,
Work with Version – 2010
/safe
Starts Outlook without extensions, Reading Pane, or toolbar customization.
Work with Version – 2000,
Work with Version – 2002/XP,
Work with Version – 2003,
Work with Version – 2007,
Work with Version – 2010
/safe:1
Starts Outlook with the Reading Pane off.
Work with Version – 2003,
Work with Version – 2007,
Work with Version – 2010
/safe:2
Starts Outlook without checking mail at startup.
Work with Version – 2003
/safe:3
Starts Outlook with extensions turned off, but listed in the Add-In Manager.
Work with Version – 2003,
Work with Version – 2007,
Work with Version – 2010
/safe:4
Starts Outlook without loading Outcmd.dat (customized toolbars) and *.fav file.
Work with Version – 2003,
Work with Version – 2007
Youtube Copyright claim Bypass is Possible : Watch Copyright claim Videos on Youtube
Now to bypass the copyright claim, just open the hyperlink where video is hosted on youtube. Note down the code uniquely generated for video.
Now to embed the video on any website or blog below is the code. You only need to change the code uniquely generated for video
Amazing Paper USB Drive
Lebedev design studio has published his vision of what will be the USB-drives in the near future. According to the authors of the concept with the soulful title Fleshkus such storage media will be disposable due to its cheapness of production. Fleshkus will look like a box of paper vouchers matches. All necessary electronic filling will be placed on such separated modules.