Uncategorised
Password Recovery
Passwords in databases or files are not stored in plaintext, they are stored in some kind of gibberish. The gibberish counterpart of a plaintext password is the hash of the password. The intuition is that it should be a straight forward process to calculate a hash from plaintext, but it should be impossible to calculate from a hash to plaintext. There are many hashing algorithms out there. Some need more computational power, some need less.
Due to the fact, that you cannot calculate from hash to plaintext you need to create a lot of possible candidates from a wordlist or with some other method and then compare the results with your hash which should be recovered. If you find a match, you found the plaintext.
Don't use any kind of information provided on this page for illegal activities!
Weiterlesen: Password Recovery
Write comment (0 Comments)Just a small guide line for using Visual Studio Code, MSYS2 and OpenGL on Windows. Have also a look at some nice instruction on GitHub C++ & OpenGL VSCode Setup or at some other good instruction Setup OpenGL with VS Code which has also a nice template on GitHub opengl-cpp-template.
Install Visual Studio Code
Have a look at the Setting up Visual Studio Code page to download and install the latest VSCode for your particular platform.
Install Extensions
For a basic setup there is only one needed extension: C/C++ for Visual Studio Code
c_cpp_properties.json
For the Visual Studio Code environment. It has includePath for adding header files.
{
"configurations": [
{
"name": "Win32",
"includePath": [
"${workspaceFolder}/**",
"C:\\msys64\\usr\\include\\**",
"C:\\msys64\\mingw32\\include"
],
"defines": [
"_DEBUG",
"UNICODE",
"_UNICODE"
],
"compilerPath": "C:\\msys64\\usr\\bin\\gcc.exe",
"cStandard": "c17",
"cppStandard": "c++17",
"intelliSenseMode": "gcc-x64"
}
],
"version": 4
}
task.json
For the g++ compiler. Has args to set the include- and library paths.
{
"version": "2.0.0",
"tasks": [
{
"type": "cppbuild",
"label": "C/C++: g++.exe build active file",
"command": "C:\\msys64\\usr\\bin\\g++.exe",
"args": [
"-g",
"${file}",
"-ID:\\VSC-Projects\\opengltest",
"-IC:\\msys64\\usr\\include\\**",
"-IC:\\msys64\\mingw32\\include",
"-LC:\\msys64\\mingw64\\lib",
"-lopengl32",
"-lfreeglut",
"-lglew32",
"-o",
"${fileDirname}\\${fileBasenameNoExtension}.exe"
],
"options": {
"cwd": "C:\\msys64\\usr\\bin"
},
"problemMatcher": [
"$gcc"
],
"group": {
"kind": "build",
"isDefault": true
},
"detail": "compiler: C:\\msys64\\usr\\bin\\g++.exe"
}
]
}
launch.json
Debug error in VS Code
If you get a debug error with a message like that:
Unable to 'main.cpp': File not found (file:///c/Users/.../main.cpp)
add sourceFileMap to launch.json file.
"sourceFileMap": {
"/c": "C:/"
}
https://github.com/Microsoft/vscode-cpptools/issues/1546#issuecomment-365368570
Install MSYS2
First follow the steps for installing MSYS2 shown on the project page: MSYS2-installation
Package Management
Searching for packages: pacman -Ss <name_pattern>
Installing new packages: pacman -S <package_names|package_groups>
Removing packages: pacman -R <package_names|package_groups>
Use OpenGL
Use olcPixelGameEngine
Write comment (0 Comments)
Not Good!

I can't seem to find the page you're looking for. I searched a lot of pages, more than anyone, but can't find it! That's not my problem! I did the best job ever, a tremendous job. I'm doing very, very, very well with searching stuff.
You may not be able to visit this incredible page because of:
1. A very fantastic but out-of-date bookmark/favourite.
2. A not good and very boring search engine that has an out-of-date listing for this substantial site.
3. A powerful but mistyped address, find the correct one, because people are always saying I have the best addresses.
4. You have no access to this page because I build a "yoouuge" wall around it.
5. A lot of people are saying, the requested resource was not found because China stole it. I don't know, but that is what people are telling me.
6. An error has occurred while processing your disgusting request. Its true, believe me!
I’m doing very well with helping people. So go here thomas-messmer.com
Write comment (0 Comments)Thomas Messmer
- Brühlgass 5
- Tengen
- BadenWürttemberg
- 78250
- Deutschland
- 07736 / 1717² + 52² + 8² +3
- http://thomas-messmer.com
Thomas-Messmer.com wurde Ende 2015, Anfang 2016 von mir ins Leben gerufen.
Doch warum soll man heutzutage überhaupt noch eine Webseite unterhalten wenn es doch schon so viele nützliche und noch weit mehr unnütze Webseiten gibt? Dies ist eine gute Frage, welche ich für mich folgendermaßen beantworten kann.
Im Laufe der Zeit beschäftigt man sich mit ach so vielen Dingen, sodass man nach und nach etwas den Überblick verlieren kann. Damit ich selbst noch weiß was ich in der Vergangenheit getan habe und vor allem "wie" ich es getan habe, will ich genau diese Informationen für mich und für die Allgemeinheit zur Verfügung stellen in der Hoffnung, dass falls in Zukunft mal wieder auf die älteren Projekte zurückgegriffen wird, nicht wieder alles von Neuem erarbeitet werden muss.
Grundlegend dient diese Webseite der Unterhaltung und verfolgt das Ziel Wissen zu schaffen bzw. weiter zu vermitteln. Die Inhalte auf dieser Webseite wurden mit dem Hintergrund und in der Hoffnung erstellt, dass sie für Freunde und weitere Personen brauchbar sein könnten. Fragen, Kommentare, Anregungen und Kritik sind erwünscht und können unter dem jeweiligen Artikel oder per E-Mail an mich gesendet werden.
Anmerkung I: Ich übernehme keine Garantie auf die inhaltliche Korrektheit der Beiträge. Für eventuell auftrettende Schäden, die durch die Benutzung des auf dieser Seite vermittelten Wissens hervorgerufen wurden, kann ebenfall keine Garantie übernommen werden. Alle bereitgestellten Programme können frei verwendet werden.
owner of the DRD4-7R gen
Anmerkung II: Diese Webseite wird vermutlich immer wieder überarbeitet werden und nie einen finalen Stand erreichen. Es kann sehr wohl vorkommen, dass Seiten bereits angelegt aber über noch keinen Inhalt verfügen oder inhaltlich nicht korrekt sind. Dies liegt zum einen an zu wenig Zeit meinerseits und zum anderen daran, dass es manchmal mühsam sein kann einigermaßen geeignete Texte zu verfassen. Wer sich daran stört dem sei hier ein Link vorgeschlagen: Bitte diese Seite verlassen!

