Skip to content

Commit 6d29323

Browse files
committed
First commit
0 parents  commit 6d29323

22 files changed

+7052
-0
lines changed

.gitignore

+354
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,354 @@
1+
## Ignore Visual Studio temporary files, build results, and
2+
## files generated by popular Visual Studio add-ons.
3+
##
4+
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
5+
6+
# User-specific files
7+
*.rsuser
8+
*.suo
9+
*.user
10+
*.userosscache
11+
*.sln.docstates
12+
13+
# User-specific files (MonoDevelop/Xamarin Studio)
14+
*.userprefs
15+
16+
# Mono auto generated files
17+
mono_crash.*
18+
19+
# Build results
20+
[Dd]ebug/
21+
[Dd]ebugPublic/
22+
*/CrackMe/[Rr]elease/
23+
*/CrackMe/[Rr]eleases/
24+
x64/
25+
x86/
26+
[Aa][Rr][Mm]/
27+
[Aa][Rr][Mm]64/
28+
bld/
29+
[Bb]in/
30+
[Oo]bj/
31+
[Ll]og/
32+
[Ll]ogs/
33+
34+
# Visual Studio 2015/2017 cache/options directory
35+
.vs/
36+
# Uncomment if you have tasks that create the project's static files in wwwroot
37+
#wwwroot/
38+
39+
# Visual Studio 2017 auto generated files
40+
Generated\ Files/
41+
42+
# MSTest test Results
43+
[Tt]est[Rr]esult*/
44+
[Bb]uild[Ll]og.*
45+
46+
# NUnit
47+
*.VisualState.xml
48+
TestResult.xml
49+
nunit-*.xml
50+
51+
# Build Results of an ATL Project
52+
[Dd]ebugPS/
53+
[Rr]eleasePS/
54+
dlldata.c
55+
56+
# Benchmark Results
57+
BenchmarkDotNet.Artifacts/
58+
59+
# .NET Core
60+
project.lock.json
61+
project.fragment.lock.json
62+
artifacts/
63+
64+
# StyleCop
65+
StyleCopReport.xml
66+
67+
# Files built by Visual Studio
68+
*_i.c
69+
*_p.c
70+
*_h.h
71+
*.ilk
72+
*.meta
73+
*.metagen
74+
*.obj
75+
*.iobj
76+
*.pch
77+
*.pdb
78+
*.ipdb
79+
*.pgc
80+
*.pgd
81+
*.rsp
82+
*.sbr
83+
*.tlb
84+
*.tli
85+
*.tlh
86+
*.tmp
87+
*.tmp_proj
88+
*_wpftmp.csproj
89+
*.log
90+
*.vspscc
91+
*.vssscc
92+
.builds
93+
*.pidb
94+
*.svclog
95+
*.scc
96+
97+
# Chutzpah Test files
98+
_Chutzpah*
99+
100+
# Visual C++ cache files
101+
ipch/
102+
*.aps
103+
*.ncb
104+
*.opendb
105+
*.opensdf
106+
*.sdf
107+
*.cachefile
108+
*.VC.db
109+
*.VC.VC.opendb
110+
111+
# Visual Studio profiler
112+
*.psess
113+
*.vsp
114+
*.vspx
115+
*.sap
116+
117+
# Visual Studio Trace Files
118+
*.e2e
119+
120+
# TFS 2012 Local Workspace
121+
$tf/
122+
123+
# Guidance Automation Toolkit
124+
*.gpState
125+
126+
# ReSharper is a .NET coding add-in
127+
_ReSharper*/
128+
*.[Rr]e[Ss]harper
129+
*.DotSettings.user
130+
131+
# TeamCity is a build add-in
132+
_TeamCity*
133+
134+
# DotCover is a Code Coverage Tool
135+
*.dotCover
136+
137+
# AxoCover is a Code Coverage Tool
138+
.axoCover/*
139+
!.axoCover/settings.json
140+
141+
# Coverlet is a free, cross platform Code Coverage Tool
142+
coverage*[.json, .xml, .info]
143+
144+
# Visual Studio code coverage results
145+
*.coverage
146+
*.coveragexml
147+
148+
# NCrunch
149+
_NCrunch_*
150+
.*crunch*.local.xml
151+
nCrunchTemp_*
152+
153+
# MightyMoose
154+
*.mm.*
155+
AutoTest.Net/
156+
157+
# Web workbench (sass)
158+
.sass-cache/
159+
160+
# Installshield output folder
161+
[Ee]xpress/
162+
163+
# DocProject is a documentation generator add-in
164+
DocProject/buildhelp/
165+
DocProject/Help/*.HxT
166+
DocProject/Help/*.HxC
167+
DocProject/Help/*.hhc
168+
DocProject/Help/*.hhk
169+
DocProject/Help/*.hhp
170+
DocProject/Help/Html2
171+
DocProject/Help/html
172+
173+
# Click-Once directory
174+
publish/
175+
176+
# Publish Web Output
177+
*.[Pp]ublish.xml
178+
*.azurePubxml
179+
# Note: Comment the next line if you want to checkin your web deploy settings,
180+
# but database connection strings (with potential passwords) will be unencrypted
181+
*.pubxml
182+
*.publishproj
183+
184+
# Microsoft Azure Web App publish settings. Comment the next line if you want to
185+
# checkin your Azure Web App publish settings, but sensitive information contained
186+
# in these scripts will be unencrypted
187+
PublishScripts/
188+
189+
# NuGet Packages
190+
*.nupkg
191+
# NuGet Symbol Packages
192+
*.snupkg
193+
# The packages folder can be ignored because of Package Restore
194+
**/[Pp]ackages/*
195+
# except build/, which is used as an MSBuild target.
196+
!**/[Pp]ackages/build/
197+
# Uncomment if necessary however generally it will be regenerated when needed
198+
#!**/[Pp]ackages/repositories.config
199+
# NuGet v3's project.json files produces more ignorable files
200+
*.nuget.props
201+
*.nuget.targets
202+
203+
# Microsoft Azure Build Output
204+
csx/
205+
*.build.csdef
206+
207+
# Microsoft Azure Emulator
208+
ecf/
209+
rcf/
210+
211+
# Windows Store app package directories and files
212+
AppPackages/
213+
BundleArtifacts/
214+
Package.StoreAssociation.xml
215+
_pkginfo.txt
216+
*.appx
217+
*.appxbundle
218+
*.appxupload
219+
220+
# Visual Studio cache files
221+
# files ending in .cache can be ignored
222+
*.[Cc]ache
223+
# but keep track of directories ending in .cache
224+
!?*.[Cc]ache/
225+
226+
# Others
227+
ClientBin/
228+
~$*
229+
*~
230+
*.dbmdl
231+
*.dbproj.schemaview
232+
*.jfm
233+
*.pfx
234+
*.publishsettings
235+
orleans.codegen.cs
236+
237+
# Including strong name files can present a security risk
238+
# (https://github.com/github/gitignore/pull/2483#issue-259490424)
239+
#*.snk
240+
241+
# Since there are multiple workflows, uncomment next line to ignore bower_components
242+
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
243+
#bower_components/
244+
245+
# RIA/Silverlight projects
246+
Generated_Code/
247+
248+
# Backup & report files from converting an old project file
249+
# to a newer Visual Studio version. Backup files are not needed,
250+
# because we have git ;-)
251+
_UpgradeReport_Files/
252+
Backup*/
253+
UpgradeLog*.XML
254+
UpgradeLog*.htm
255+
ServiceFabricBackup/
256+
*.rptproj.bak
257+
258+
# SQL Server files
259+
*.mdf
260+
*.ldf
261+
*.ndf
262+
263+
# Business Intelligence projects
264+
*.rdl.data
265+
*.bim.layout
266+
*.bim_*.settings
267+
*.rptproj.rsuser
268+
*- [Bb]ackup.rdl
269+
*- [Bb]ackup ([0-9]).rdl
270+
*- [Bb]ackup ([0-9][0-9]).rdl
271+
272+
# Microsoft Fakes
273+
FakesAssemblies/
274+
275+
# GhostDoc plugin setting file
276+
*.GhostDoc.xml
277+
278+
# Node.js Tools for Visual Studio
279+
.ntvs_analysis.dat
280+
node_modules/
281+
282+
# Visual Studio 6 build log
283+
*.plg
284+
285+
# Visual Studio 6 workspace options file
286+
*.opt
287+
288+
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
289+
*.vbw
290+
291+
# Visual Studio LightSwitch build output
292+
**/*.HTMLClient/GeneratedArtifacts
293+
**/*.DesktopClient/GeneratedArtifacts
294+
**/*.DesktopClient/ModelManifest.xml
295+
**/*.Server/GeneratedArtifacts
296+
**/*.Server/ModelManifest.xml
297+
_Pvt_Extensions
298+
299+
# Paket dependency manager
300+
.paket/paket.exe
301+
paket-files/
302+
303+
# FAKE - F# Make
304+
.fake/
305+
306+
# CodeRush personal settings
307+
.cr/personal
308+
309+
# Python Tools for Visual Studio (PTVS)
310+
__pycache__/
311+
*.pyc
312+
313+
# Cake - Uncomment if you are using it
314+
# tools/**
315+
# !tools/packages.config
316+
317+
# Tabs Studio
318+
*.tss
319+
320+
# Telerik's JustMock configuration file
321+
*.jmconfig
322+
323+
# BizTalk build output
324+
*.btp.cs
325+
*.btm.cs
326+
*.odx.cs
327+
*.xsd.cs
328+
329+
# OpenCover UI analysis results
330+
OpenCover/
331+
332+
# Azure Stream Analytics local run output
333+
ASALocalRun/
334+
335+
# MSBuild Binary and Structured Log
336+
*.binlog
337+
338+
# NVidia Nsight GPU debugger configuration file
339+
*.nvuser
340+
341+
# MFractors (Xamarin productivity tool) working folder
342+
.mfractor/
343+
344+
# Local History for Visual Studio
345+
.localhistory/
346+
347+
# BeatPulse healthcheck temp database
348+
healthchecksdb
349+
350+
# Backup folder for Package Reference Convert tool in Visual Studio 2017
351+
MigrationBackup/
352+
353+
# Ionide (cross platform F# VS Code tools) working folder
354+
.ionide/

CrackMe00/CrackMe.sln

+31
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
2+
Microsoft Visual Studio Solution File, Format Version 12.00
3+
# Visual Studio 15
4+
VisualStudioVersion = 15.0.28307.1022
5+
MinimumVisualStudioVersion = 10.0.40219.1
6+
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "CrackMe", "CrackMe\CrackMe.vcxproj", "{020BF29C-75AE-45F8-A73F-5E76157BE22E}"
7+
EndProject
8+
Global
9+
GlobalSection(SolutionConfigurationPlatforms) = preSolution
10+
Debug|x64 = Debug|x64
11+
Debug|x86 = Debug|x86
12+
Release|x64 = Release|x64
13+
Release|x86 = Release|x86
14+
EndGlobalSection
15+
GlobalSection(ProjectConfigurationPlatforms) = postSolution
16+
{020BF29C-75AE-45F8-A73F-5E76157BE22E}.Debug|x64.ActiveCfg = Debug|x64
17+
{020BF29C-75AE-45F8-A73F-5E76157BE22E}.Debug|x64.Build.0 = Debug|x64
18+
{020BF29C-75AE-45F8-A73F-5E76157BE22E}.Debug|x86.ActiveCfg = Debug|Win32
19+
{020BF29C-75AE-45F8-A73F-5E76157BE22E}.Debug|x86.Build.0 = Debug|Win32
20+
{020BF29C-75AE-45F8-A73F-5E76157BE22E}.Release|x64.ActiveCfg = Release|x64
21+
{020BF29C-75AE-45F8-A73F-5E76157BE22E}.Release|x64.Build.0 = Release|x64
22+
{020BF29C-75AE-45F8-A73F-5E76157BE22E}.Release|x86.ActiveCfg = Release|Win32
23+
{020BF29C-75AE-45F8-A73F-5E76157BE22E}.Release|x86.Build.0 = Release|Win32
24+
EndGlobalSection
25+
GlobalSection(SolutionProperties) = preSolution
26+
HideSolutionNode = FALSE
27+
EndGlobalSection
28+
GlobalSection(ExtensibilityGlobals) = postSolution
29+
SolutionGuid = {B9DC7815-2753-48FC-9E55-BDAC7A91B277}
30+
EndGlobalSection
31+
EndGlobal

CrackMe00/CrackMe/AboutForm.cpp

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
#include "AboutForm.h"
2+

0 commit comments

Comments
 (0)