<BODY><script type="text/javascript"> function setAttributeOnload(object, attribute, val) { if(window.addEventListener) { window.addEventListener('load', function(){ object[attribute] = val; }, false); } else { window.attachEvent('onload', function(){ object[attribute] = val; }); } } </script> <div id="navbar-iframe-container"></div> <script type="text/javascript" src="https://apis.google.com/js/platform.js"></script> <script type="text/javascript"> gapi.load("gapi.iframes:gapi.iframes.style.bubble", function() { if (gapi.iframes && gapi.iframes.getContext) { gapi.iframes.getContext().openChild({ url: 'https://www.blogger.com/navbar.g?targetBlogID\x3d18755935\x26blogName\x3dVINOD+MEDIA%E2%84%A2\x26publishMode\x3dPUBLISH_MODE_BLOGSPOT\x26navbarType\x3dBLUE\x26layoutType\x3dCLASSIC\x26searchRoot\x3dhttps://dmnvinod.blogspot.com/search\x26blogLocale\x3den_US\x26v\x3d2\x26homepageUrl\x3dhttp://dmnvinod.blogspot.com/\x26vt\x3d-1483311251890623224', where: document.getElementById("navbar-iframe-container"), id: "navbar-iframe" }); } }); </script>

Decrypting Cisco Type 7 Password on the fly

 
There is no need to use external tools like "Boson get pass" or "Cain & Able" to decrypt Type7 Passwords.
Type7 password are only used to mask the password in running-configs rather than having it in plain text.
 
For Example if you want the know the password for vty lines,
 
Rack1R1#sh run | b line vty

line vty 0 4
 password 7 14011B050300  ----> this is the Encrypted Type7 Password.
 login

Rack1R1#conf t
Enter configuration commands, one per line.  End with CNTL/Z.
Rack1R1(config)#key chain test ------> Create a key chain
Rack1R1(config-keychain)#key 123-----> Give it a name.
Rack1R1(config-keychain-key)#key-string 7 14011B050300 ----> paste the exact type7 password(key-string 7 <Type7 Password>
Rack1R1(config-keychain-key)#exit----> now exit to exec mode......
Rack1R1(config-keychain)#exit
Rack1R1(config)#exit
Rack1R1#
*Mar  1 00:09:42.743: %SYS-5-CONFIG_I: Configured from console by console
Rack1R1#show key chain test
Key-chain test:
    key 123 -- text "vinod" ----> Here is your decrypted Type7 password.
        accept lifetime (always valid) - (always valid) [valid now]
        send lifetime (always valid) - (always valid) [valid now]
Rack1R1#
 
Happy Hacking !!!


Labels: , ,

« Home | Next »
| Next »
| Next »
| Next »
| Next »
| Next »
| Next »
| Next »
| Next »
| Next »

» Post a Comment