Skip to content

Commit 8e13533

Browse files
author
Adnane Arhadnane
committed
Initial commit: SQL Injection Cybersecurity Simulator - Educational project with comprehensive attack simulation and defense demonstration
0 parents  commit 8e13533

13 files changed

Lines changed: 3908 additions & 0 deletions

.gitignore

Lines changed: 208 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,208 @@
1+
# Build results
2+
[Dd]ebug/
3+
[Dd]ebugPublic/
4+
[Rr]elease/
5+
[Rr]eleases/
6+
x64/
7+
x86/
8+
[Aa][Rr][Mm]/
9+
[Aa][Rr][Mm]64/
10+
bld/
11+
[Bb]in/
12+
[Oo]bj/
13+
[Ll]og/
14+
15+
# Visual Studio 2015/2017 cache/options directory
16+
.vs/
17+
18+
# Visual Studio Code
19+
.vscode/
20+
21+
# MSTest test Results
22+
[Tt]est[Rr]esult*/
23+
[Bb]uild[Ll]og.*
24+
25+
# NUnit
26+
*.VisualState.xml
27+
TestResult.xml
28+
nunit-*.xml
29+
30+
# Build Results of an ATL Project
31+
[Dd]ebugPS/
32+
[Rr]eleasePS/
33+
dlldata.c
34+
35+
# Benchmark Results
36+
BenchmarkDotNet.Artifacts/
37+
38+
# .NET Core
39+
project.lock.json
40+
project.fragment.lock.json
41+
artifacts/
42+
43+
# NuGet Packages
44+
*.nupkg
45+
# The packages folder can be ignored because of Package Restore
46+
**/[Pp]ackages/*
47+
# except build/, which is used as an MSBuild target.
48+
!**/[Pp]ackages/build/
49+
# Uncomment if necessary however generally it will be regenerated when needed
50+
#!**/[Pp]ackages/repositories.config
51+
# NuGet v3's project.json files produces more ignorable files
52+
*.nuget.props
53+
*.nuget.targets
54+
55+
# Microsoft Azure Build Output
56+
csx/
57+
*.build.csdef
58+
59+
# Microsoft Azure Emulator
60+
ecf/
61+
rcf/
62+
63+
# Windows Store app package directories and files
64+
AppPackages/
65+
BundleArtifacts/
66+
Package.StoreAssociation.xml
67+
_pkginfo.txt
68+
*.appx
69+
*.appxbundle
70+
*.appxupload
71+
72+
# Visual Studio cache files
73+
# files ending in .cache can be ignored
74+
*.[Cc]ache
75+
# but keep track of directories ending in .cache
76+
!?*.[Cc]ache/
77+
78+
# Others
79+
ClientBin/
80+
~$*
81+
*~
82+
*.dbmdl
83+
*.dbproj.schemaview
84+
*.jfm
85+
*.pfx
86+
*.publishsettings
87+
orleans.codegen.cs
88+
89+
# Including strong name files can present a security risk
90+
# (https://github.com/github/gitignore/pull/2483#issue-259490424)
91+
#*.snk
92+
93+
# Since there are multiple workflows, uncomment the next line to ignore bower_components
94+
# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622)
95+
#bower_components/
96+
97+
# RIA/Silverlight projects
98+
Generated_Code/
99+
100+
# Backup & report files from converting an old project file
101+
# to a newer Visual Studio version. Backup files are not needed,
102+
# because we have git ;-)
103+
_UpgradeReport_Files/
104+
Backup*/
105+
UpgradeLog*.XML
106+
UpgradeLog*.htm
107+
CDF_*/
108+
109+
# SQL Server files
110+
*.mdf
111+
*.ldf
112+
*.ndf
113+
114+
# Business Intelligence projects
115+
*.rdl.data
116+
*.bim.layout
117+
*.bim_*.settings
118+
*.rptproj.rsuser
119+
120+
# Microsoft Fakes
121+
FakesAssemblies/
122+
123+
# GhostDoc plugin setting file
124+
*.GhostDoc.xml
125+
126+
# Node.js Tools for Visual Studio
127+
.ntvs_analysis.dat
128+
node_modules/
129+
130+
# Visual Studio 6 build log
131+
*.plg
132+
133+
# Visual Studio 6 workspace options file
134+
*.opt
135+
136+
# Visual Studio 6 auto-generated workspace file (contains which files were open etc.)
137+
*.vbw
138+
139+
# Visual Studio LightSwitch build output
140+
**/*.HTMLClient/GeneratedArtifacts
141+
**/*.DesktopClient/GeneratedArtifacts
142+
**/*.DesktopClient/ModelManifest.xml
143+
**/*.Server/GeneratedArtifacts
144+
**/*.Server/ModelManifest.xml
145+
_Pvt_Extensions
146+
147+
# Paket dependency manager
148+
.paket/paket.exe
149+
paket-files/
150+
151+
# FAKE - F# Make
152+
.fake/
153+
154+
# CodeRush personal settings
155+
.cr/personal
156+
157+
# Python Tools for Visual Studio (PTVS)
158+
__pycache__/
159+
*.pyc
160+
161+
# Cake - Uncomment if you are using it
162+
# tools/**
163+
# !tools/packages.config
164+
165+
# Tabs Studio
166+
*.tss
167+
168+
# Telerik's JustMock configuration file
169+
*.jmconfig
170+
171+
# BizTalk build output
172+
*.btp.cs
173+
*.btm.cs
174+
*.odx.cs
175+
*.xsd.cs
176+
177+
# OpenCover UI analysis results
178+
OpenCover/
179+
180+
# Azure Stream Analytics local run output
181+
ASALocalRun/
182+
183+
# MSBuild Binary and Structured Log
184+
*.binlog
185+
186+
# NVidia Nsight GPU debugger configuration file
187+
*.nvuser
188+
189+
# MFractors (Xamarin productivity tool) working folder
190+
.mfractor/
191+
192+
# Local History for Visual Studio
193+
.localhistory/
194+
195+
# BeatPulse healthcheck temp database
196+
healthchecksdb
197+
198+
# Backup folder for Package Reference Convert tool in Visual Studio 2017
199+
MigrationBackup/
200+
201+
# Reports folder
202+
Reports/
203+
204+
# IDE settings
205+
*.suo
206+
*.user
207+
*.userosscache
208+
*.sln.docstates

0 commit comments

Comments
 (0)