Read SAM file with Local File Inclusion [closed] - windows

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 6 years ago.
Improve this question
I have to hack (for learning purpose) a windows server through Local File Inclusion. I have a web application that is vulnerable to Local File Inclusion
I'm trying to include SAM file from windows/repair/SAM. But when i include the file strange symbols appear (as you can see in the pictures below).
How can I read the hash password in clear?

The SAM file is a registry hive, so you need to study and parse the registry hive file format. You can find its description here:
https://jadro-windows.cz/download/registry-m.zip
https://jadro-windows.cz/download/registry-pn.zip
source code of the chntpw project
Offline Registry Library (https://msdn.microsoft.com/en-us/library/ee210757(v=vs.85).aspx) – this library allows you to parse registry hive files.
I doubt the password are stored in plain text. You can find their hashes (NTLM), so you need to crack them, e.g. using rainbow tables (

Related

Installing SublimeText 4 [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 1 year ago.
Improve this question
this is such a beginners question but nevertheless wanted some of your input.
I tried installing SublimeText4 and noticed that there is no .dmg file associated with it, all i get .zip - is this normal? Usually with SBT3 and Pycharm I was used to at least some 'install' procedures.
Kind of new to Mac OS, so thanks for the help.
The DMG approach is common, but in this case, the ZIP file has the application. Often the browser will automatically unzip it for you, but if not, just double click on the ZIP file and the application will be extracted for you. Then you can just drag the app extracted from the ZIP file to your “Applications” folder and you are done.

MacOSX Encrypted Installer .pkg [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 4 years ago.
Improve this question
I'm Downloaded this files but not opening with pkgutil My Question is how to decrypt and extract pkg file and get InstallESD.dmg pls help me Sorry for my bad engllish ;)
http://osxapps.itunes.apple.com/apple-assets-us-std-000001/Purple49/v4/15/89/37/1589378d-0b6e-ef90-5533-b2f3bb2fe491/encrypted1202238309850061611.pfpkg
http://osxapps.itunes.apple.com/apple-assets-us-std-000001/Purple69/v4/61/cb/04/61cb0419-ba73-70c1-02ce-b1cee2f2269c/encrypted8769637421434146660.pkg
If the contents are encrypted there is no hope unless you have the key, that is the whole point of encryption.
To examine and open .pkg files Use "Pacifist.app".
The file encrypted1202238309850061611.pfpkg is not encrypted, I can tell by looking at the contents in a hex editor, there may be sub portions that are though. If you change the extension from pfpkg to pkg Pacifist will open it.
The file encrypted1202238309850061611.pkg will open in Pacifist.
See How to unpack and pack pkg file.

Change Default Program for a specific folder [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 4 years ago.
Improve this question
I do not know if this is possible (I suspect that it isn't), but can you change the default program for a file type for only a specific folder and the folder's sub-folders in Windows 7?
What I am trying to do is set the html files in a specific folder to open in Notepad++ by default, and everywhere else, open in Chrome (which is the current default).
I do know how to change the global default program for a file extension, but that is not what I am trying to do in this case.
Thank you in advance.
In a word: Impossible
The registry cant be customised for an individual folder it is all or nothing.

Why does excel have so many options to save a csv file? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
I go to save as my file in excel and there are so many different format types to save as for csv:
CSV (Comma Deliminated)
CSV (Macintosh)
CSV (MS-DOS)
Aren't they all the same? I'm using Microsoft Office Professional Plus 2010.
They aren't all the same. Particularly DOS and Macintosh had different line ending characters, which this option might be referring to:
http://en.wikipedia.org/wiki/Newline#Representations
but see https://superuser.com/a/385267/67909 this option in Excel seems to relate to foreign / accented characters.
"CSV" formatted data can vary in lots of ways:
http://en.wikipedia.org/wiki/Comma-separated_values#Lack_of_a_standard

Find out what file does a program attempt to read [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 7 years ago.
Improve this question
I've got third party Winamp plug-in in windows, that should be able to load its datafile.
The datafile is located in same folder as the plug-in, but can not be found. My idea is that plug-in searches in some pre-defined path. So I need somehow to find out what file read attempt is done to place file in the appropriate place.
Best way to do this is to use Process Monitor from Sysinternals suite (http://technet.microsoft.com/sysinternals/bb896645)
Set up filters to watch only the examined program and look for 'CreateFile' operations, which are also read attempts.

Resources