Pages

Search Within The Blog....

Loading
Showing posts with label how. Show all posts
Showing posts with label how. Show all posts

04/10/2011

how to create @att.net masters when ur IP is not from US


You will get above error when u try to create att yahoo id from out the usa.

For the job to be done you should do the follwing steps.
1. Download ULTRASURF software which is free offcourse to change you ip if/enless your out side from usa. This will give a usa based ip so then u can make account.

Get it from here
2. Open Soft, Ip will be automatically assigned to. Use Internet Explorer formaking att ids: Recommanded
3. After successfully connected to the server, open internet explorer and paste the following address and hit/press Enter button.
https://attreg.att.net/PortalRegWeb/PortalRegController?%3Cbr%20/%3EcallingAppId=OP&returnUrl=
4. Just fill the form and start enjoing att account with yahoo. After Creating account its good to sign it in at att.yahoo.com.
Thats all enjoy your chat ;)

HOW TO REGISTER .OCX or .DLL in SYSTEM32 in XP USERS AND VISTA USERS

HOW TO REGISTER .OCX or .DLL in SYSTEM32
in XP USERS AND VISTA USERS3 WAYS ON HOW TO REGISTER IN XP USERS
FIRST WAY
first when you download a booter and once you click it it says an error, missing file... get the name of the said "MISSING FILE" look in the folder coz most of the time its there... if its there... COPY it then PASTE in SYSTEM 32..
FOR THE MISSING FILES or MISSING .DLL or .OCX GO HERE:

http://www.afreeocx.com/ocx/info/mswinsck_ocx.html
http://www.ascentive.com/
http://www.afreeocx.com/
http://www.ocxdump.com/
HOW HERE ARE THE STEPS....
STEP 1

STEP 2

STEP 3

STEP 4

SECOND WAY
By using the Program of Cjdelphi

as in the pic say... download the program first then
1. OPEN it
2. drag the dll or ocx there...
3. "select dll or ocx to register"
LINK HERE

THIRD WAY....

1. Go to START
2. Look for "Run"
3. and type regsvr32 .OCX or .DLL in the pink one you will put the name of the .OCX or .DLL that u need to register
example...
regsvr32 wavefx32.dll
2 WAYS ON HOW TO REGISTER .OCX or .DLL in VISTA USERS
1st WAY
Like in XP you can also USE the PROGRAM OF CJDELPHI
but u need to go on "SAFEMODE" but download first the program of CJDELPHI
LINK HERE


How to go to safemode?...
1. Restart your computer
2. In the beginning when u see all black PRESS "f8" until this screen shows if not... restart again then press again
3. choose SAFEMODE
4. OPEN THE PROGRAM of Cj....
5. Drag the ocx or dll in the program or browse it...

2ND WAY
is by turning off your UAC
1. go to start
2. control pannel
3. user account
4. choose turn off or on

HOW TO FIX VBRunALL ERROR
to solve some runtime errors also install this porg
LINKS
http://www.2shared.com/file/3019431/14b8809/VBRunALL.html
http://rapidshare.com/files/101103645/VBRunALL.msi.html

Analyzing unknown binaries (exe scanner)

Fear to run unknown executables from virus, troja, malware or spywares? Well here are the solution for you.
It's not like the first time that we need to know what an executable binary file actually does. Of course, hardened reverse engineers will launch up their trusty hex editor / disassembler / debugger and spend a few days staring at the code. But for the rest of us, we need answers and we need them quick!
Traditionally one would run an AV scan on the unknown binary file and feel pretty comfortable with running it after nothing turns up. However, experience teaches that this is certainly not fool proof and just the fact that an AV reports nothing doesn't mean that the particular program was written with best intentions.
One way of going around this is to scan with multiple AntiVirus scanners. More often than not, it is not feasible to have a machine which has various AV products ready to scan your possibly malicious (but probably not) binaries. Hence a lot of people make use of services like VirusTotal and Jotti's malware scan. These two services provide a very good solution and will generally satisfy most people's needs.
However if, you have a binary which isn't caught by any AntiVirus vendor - then you might still want to decide for yourself if it is indeed malicious or not. It might not be even something that the AV companies will ever catch. Enter Anubis, Norman Sandbox and CWSandbox. The three of them will give you what a binary does based on how it behaved when ran in a virtualized or sandboxed environment. They will list things like the imported modules, files created or written to, sockets opened and so on.
I'm pretty new to Anubis - but I like the approach. They're making use of a patched version of Qemu internally. If anyone's interested in the internals of this project, they're published here. One problem that I guess is obvious with this approach, is when an executable checks for some property. Newer malware is known to check for signs of a virtual machine. Anubis and others should not have this problem.
But (there always has to be a "but") ... what happens when the executable expects a specific path to run the malicious code? For example, it might check to see if it is running from the Outlook temporary files directory before doing anything malicious. My best guess is that the methods that Anubis and other similar projects use, will fail to detect the malicious code simply because it is never run. Of course, by looking at the Outlook directory check, it can be enough indication that the executable might have malicious code.