├── ArduinoLibLED ├── .gitattributes ├── LED_BRIGHTNESS.zip ├── LED_BRIGHTNESS │ ├── LED_BRIGHTNESS.cpp │ ├── LED_BRIGHTNESS.h │ ├── examples │ │ └── Example1 │ │ │ └── Example1.ino │ └── keywords.txt └── README.md ├── BunnyBoxCTF ├── CTFd_setup.sh ├── CreateWordlist.sh ├── DiffieHellman.py ├── ExifTool-cmd ├── GZIP ├── KEYBOARDCODE ├── POLYBIUS-CIPHER.py ├── README.md ├── RSA │ ├── RSA.py │ ├── RSA.py.save │ ├── RSA3.py │ ├── RSA4.py │ ├── RSAA.py │ ├── RSA_decoder.py │ ├── RSA_little_exponent.py │ └── decrypte_rsa.py ├── RingZero │ ├── HashMePlease.py │ ├── HashReload.py │ ├── hashBreaker.py │ └── prog │ │ └── HateMath │ │ └── flag.py ├── SQL_injection_ ├── USBKeyScan.pdf ├── bash_python ├── bruteforce.py ├── calcule.py ├── cesar ├── convert_md5Hex_to_md5.py ├── crackzip ├── deary.py ├── dec.py ├── decodeBase64 ├── flag.php ├── flag_iceCTF.py ├── formatStringCMD ├── hill.py ├── inject_code ├── keyboard.py ├── math.rb ├── mouse.py ├── overflow ├── overflow_code_exec ├── pic.py ├── rev.py ├── rootme-XSLT.txt ├── rootme-XXE.txt ├── shell.php ├── shellShoc ├── usb_for └── xorfile.py ├── CVE-2021-20090.sh ├── LaZyGenerat0r ├── README.md └── lazyGen.py ├── LampRapberryPI2-3 ├── README.md └── lampPi.sh ├── README.md ├── RouterPassword └── routerdb.py ├── SarahahPyNotifier ├── README.md └── saraha.py ├── Sql_insert_injection_Task ├── Readme.md ├── config.php ├── feeds.php ├── home.php ├── index.php ├── insert.php ├── insert_sql_injection.sql └── theme │ ├── css │ └── bootstrap.min.css │ └── js │ ├── jquery.js │ └── main.js ├── Time-based-Blind-SQLi.py ├── TinyDB-Flask-Simple-CRUD ├── README.md ├── app.py ├── data │ └── notebook.json ├── static │ └── css │ │ └── main.css └── templates │ ├── base.html │ ├── index.html │ ├── snippets │ └── form.html │ └── update.html ├── XXE-with-local-dtd-exploit.txt ├── YouTubeTuto-Scripts ├── Arduino_library.rar ├── README.md └── Simple_TCP_ClientServer_C# │ ├── client.txt │ ├── readme.txt │ └── server.txt ├── arduinoSerailToMysql ├── README.md ├── RFID.sql └── api.py ├── birthday-reminder-bot.py ├── birthday.yaml ├── bruteForce.py ├── BruteForce.py └── passwords.txt ├── clean-cme ├── competitive_programming ├── CodeForces │ ├── HQ9+.py │ ├── HelpfulMath.py │ └── expression.py ├── Hackerrank │ ├── Bit_manipulation │ │ ├── lonely_integer.py │ │ └── maximizinf_XOR │ ├── Implementation │ │ ├── BreakingRecodes.py │ │ ├── Counting-valleys │ │ ├── Divisible Sum Pairs │ │ └── MigratoryBirds.py │ ├── sorting │ │ ├── CountingSort1.py │ │ ├── CountingSort2.py │ │ └── quickSort-1.py │ ├── strings │ │ ├── AlternatingChara.py │ │ ├── Love-letter.py │ │ ├── SuperReduced.py │ │ └── marsExp.py │ └── two_strings.py └── README.md ├── connect-ssh.sh ├── cvss3 ├── content.html ├── cvss.css └── cvss.js ├── db ├── README.md └── db ├── excel_queries.md ├── find-ioc.py ├── flask-Sqlalchemy-Simple-CRUD ├── app.py ├── notebook.db ├── static │ └── css │ │ └── main.css └── templates │ ├── base.html │ ├── index.html │ ├── snippets │ └── form.html │ └── update.html ├── flask-starter-skeleton ├── .flaskenv ├── .gitignore ├── README.md ├── app │ ├── __init__.py │ ├── auth │ │ ├── __init__.py │ │ ├── forms.py │ │ ├── models.py │ │ └── views.py │ ├── forms.py │ ├── models.py │ ├── static │ │ ├── main.css │ │ └── main.js │ ├── templates │ │ ├── _macros.html │ │ ├── auth │ │ │ ├── login.html │ │ │ └── register.html │ │ ├── base.html │ │ ├── error.html │ │ └── index.html │ ├── utils.py │ └── views.py ├── config.py ├── requirements.txt ├── tests │ ├── __init__.py │ └── test_app.py └── wsgi.py ├── flask-swagger-api-token-auth.py ├── generate_fake_data.py ├── hashLab ├── README.md ├── c.py └── hashLab.py ├── iis-bruteforce.py ├── learn-pwn ├── README.md ├── aslr │ ├── .gdb_history │ ├── exp.py │ ├── exploit.py │ ├── exploit │ │ ├── .gdb_history │ │ ├── exploit32 │ │ │ ├── crash │ │ │ ├── exploit.c │ │ │ ├── exploit.py │ │ │ ├── p │ │ │ ├── peda-session-dash.txt │ │ │ ├── peda-session-ls.txt │ │ │ ├── peda-session-ret2libc.txt │ │ │ ├── ret2libc │ │ │ └── test │ │ └── exploit64 │ │ │ ├── .gdb_history │ │ │ ├── crash │ │ │ ├── exploit.py │ │ │ ├── peda-session-ret2libc.txt │ │ │ ├── peda-session-vuln.txt │ │ │ ├── ret2libc │ │ │ ├── ret2libc.c │ │ │ ├── smash │ │ │ ├── vuln │ │ │ └── vuln.c │ ├── p │ ├── peda-session-libc-2.29.so.txt │ ├── peda-session-vuln.txt │ ├── test.py │ ├── vuln │ └── vuln.c ├── easy-file │ ├── exploit-easyFileShare7.3.py │ ├── exploit.py │ ├── get-fuzz.spk │ └── get_fuzz_easyFileShare.spk ├── elearning │ ├── .gdb_history │ ├── exploit.py │ ├── fmt.c │ ├── fmt.py │ └── peda-session-vuln0.txt ├── mm.py ├── ret2libc │ ├── .gdb_history │ ├── exploit.py │ ├── peda-session-vuln.txt │ ├── vuln │ └── vuln.c ├── ropemprium │ ├── callme │ │ └── callme32 │ │ │ ├── .gdb_history │ │ │ ├── callme32 │ │ │ ├── encrypted_flag.txt │ │ │ ├── exploit.py │ │ │ ├── key1.dat │ │ │ ├── key2.dat │ │ │ ├── libcallme32.so │ │ │ ├── m │ │ │ ├── p │ │ │ └── peda-session-callme32.txt │ ├── challenges-list.txt │ ├── fluff │ │ ├── fluff │ │ │ ├── flag.txt │ │ │ └── fluff │ │ └── fluff32 │ │ │ ├── .gdb_history │ │ │ ├── exp.py │ │ │ ├── flag.txt │ │ │ ├── fluff32 │ │ │ ├── m │ │ │ ├── p │ │ │ └── peda-session-fluff32.txt │ ├── ret2win │ │ ├── .gdb_history │ │ ├── exploit.py │ │ ├── flag.txt │ │ ├── p │ │ ├── peda-session-ret2win32.txt │ │ ├── ret2win32 │ │ └── ret2win32.zip │ ├── split │ │ ├── .gdb_history │ │ ├── exploit.py │ │ ├── flag.txt │ │ ├── p │ │ ├── peda-session-split.txt │ │ ├── split │ │ └── split32 │ │ │ ├── .gdb_history │ │ │ ├── exploit.py │ │ │ ├── flag.txt │ │ │ ├── p │ │ │ ├── peda-session-split32.txt │ │ │ └── split32 │ └── write4 │ │ ├── .gdb_history │ │ ├── write4 │ │ ├── .gdb_history │ │ ├── exp.py │ │ ├── flag.txt │ │ ├── m │ │ ├── p │ │ ├── peda-session-write4.txt │ │ └── write4 │ │ └── write432 │ │ ├── .gdb_history │ │ ├── exploit.py │ │ └── flag.txt └── vulnserver │ ├── GMON │ ├── exploit.py │ └── pwnme.py │ ├── HTER │ └── exploit.py │ ├── KSTET │ └── exploit.py │ └── TRUN │ ├── ex.py │ ├── exploit.py │ ├── fuzz.py │ └── vulnserv.spk ├── log4j.py ├── mini-scanner ├── Apache-CVE-2021-41773.sh ├── Apache-Flink-CVE-2020-17519.sh ├── BIG-IPF5_CVE-2020-5902.sh ├── PanOs_CVE-2025-0108_LoginByPass.txt ├── README.md ├── VMwarevCenter_path_traversal.sh ├── citrix_CVE-2019-19781.sh ├── scan_cisco_asa_CVE-2020-3452.sh └── template.sh ├── naabu_finger ├── README.md ├── finger.py └── service-names-port-numbers.json ├── notes.txt ├── nuclei-templates ├── CVE-2002-0561.yaml ├── CVE-2020-14181-Jira-UserEnumeration.yaml ├── CVE-2020-14882.yaml ├── apache-webdav-directory-listing.yaml ├── avaya-aura-communication-manager-shell-shock.yaml ├── check-point-panel.yaml ├── hp-ilo4-CVE-2017-12542.yaml └── tomcat-put-CVE-2017-12615.yaml ├── pulseSecureVersion.sh ├── pwnerrank_Notifier ├── README.md ├── notifier.py └── old.db ├── rubber_ducky_payload.txt ├── serpico └── api.py ├── services_health_check.sh ├── subs ├── README.md └── subs.sh ├── tekup-CTF ├── README.md ├── WEB200 │ └── Rails-LFI-CVE-2019-5418 │ │ ├── .gitignore │ │ ├── .ruby-version │ │ ├── Gemfile │ │ ├── Gemfile.lock │ │ ├── README.md │ │ ├── Rakefile │ │ ├── app │ │ ├── assets │ │ │ ├── config │ │ │ │ └── manifest.js │ │ │ ├── images │ │ │ │ └── .keep │ │ │ ├── javascripts │ │ │ │ ├── application.js │ │ │ │ ├── cable.js │ │ │ │ ├── channels │ │ │ │ │ └── .keep │ │ │ │ └── chybeta.coffee │ │ │ └── stylesheets │ │ │ │ ├── application.css │ │ │ │ └── chybeta.scss │ │ ├── channels │ │ │ └── application_cable │ │ │ │ ├── channel.rb │ │ │ │ └── connection.rb │ │ ├── controllers │ │ │ ├── application_controller.rb │ │ │ ├── chybeta_controller.rb │ │ │ └── concerns │ │ │ │ └── .keep │ │ ├── helpers │ │ │ ├── application_helper.rb │ │ │ └── chybeta_helper.rb │ │ ├── jobs │ │ │ └── application_job.rb │ │ ├── mailers │ │ │ └── application_mailer.rb │ │ ├── models │ │ │ ├── application_record.rb │ │ │ └── concerns │ │ │ │ └── .keep │ │ └── views │ │ │ └── layouts │ │ │ ├── application.html.erb │ │ │ ├── mailer.html.erb │ │ │ └── mailer.text.erb │ │ ├── bin │ │ ├── bundle │ │ ├── rails │ │ ├── rake │ │ ├── setup │ │ ├── update │ │ └── yarn │ │ ├── config.ru │ │ ├── config │ │ ├── application.rb │ │ ├── boot.rb │ │ ├── cable.yml │ │ ├── credentials.yml.enc │ │ ├── database.yml │ │ ├── environment.rb │ │ ├── environments │ │ │ ├── development.rb │ │ │ ├── production.rb │ │ │ └── test.rb │ │ ├── initializers │ │ │ ├── application_controller_renderer.rb │ │ │ ├── assets.rb │ │ │ ├── backtrace_silencers.rb │ │ │ ├── content_security_policy.rb │ │ │ ├── cookies_serializer.rb │ │ │ ├── filter_parameter_logging.rb │ │ │ ├── inflections.rb │ │ │ ├── mime_types.rb │ │ │ └── wrap_parameters.rb │ │ ├── locales │ │ │ └── en.yml │ │ ├── puma.rb │ │ ├── routes.rb │ │ ├── spring.rb │ │ └── storage.yml │ │ ├── db │ │ └── seeds.rb │ │ ├── lib │ │ ├── assets │ │ │ └── .keep │ │ └── tasks │ │ │ └── .keep │ │ ├── log │ │ └── .keep │ │ ├── package.json │ │ ├── public │ │ ├── 404.html │ │ ├── 422.html │ │ ├── 500.html │ │ ├── apple-touch-icon-precomposed.png │ │ ├── apple-touch-icon.png │ │ ├── favicon.ico │ │ └── robots.txt │ │ ├── storage │ │ └── .keep │ │ ├── test │ │ ├── application_system_test_case.rb │ │ ├── controllers │ │ │ ├── .keep │ │ │ └── chybeta_controller_test.rb │ │ ├── fixtures │ │ │ ├── .keep │ │ │ └── files │ │ │ │ └── .keep │ │ ├── helpers │ │ │ └── .keep │ │ ├── integration │ │ │ └── .keep │ │ ├── mailers │ │ │ └── .keep │ │ ├── models │ │ │ └── .keep │ │ ├── system │ │ │ └── .keep │ │ └── test_helper.rb │ │ ├── tmp │ │ └── .keep │ │ └── vendor │ │ └── .keep ├── arduino flag ├── crypto80 │ ├── b64.py │ ├── description.txt │ └── solve.py ├── ducky-flag ├── ducky-task ├── inject.bin └── tekup_task.ino.hex ├── test-2023-11-03-15-29-28-429.xml.zip ├── testme_z.ps1 ├── tiny-framework ├── README.md ├── dbTest │ └── testdb.sql ├── includes │ ├── MysqliDb.php │ ├── bootstrap.php │ ├── classes │ │ └── class.users.php │ ├── config.php │ └── functions │ │ └── security.php ├── index.php ├── templates │ └── layout.php └── themes │ ├── css │ ├── AdminLTE.css │ ├── AdminLTE.min.css │ ├── bootstrap.css │ ├── bootstrap.css.map │ ├── bootstrap.min.css │ ├── materialize.min.css │ └── skin-blue.css │ ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 │ └── js │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── custom.js │ ├── jquery.js │ ├── materialize.js │ └── npm.js ├── update-chrome.sh ├── update-firefox.sh ├── update-projectdiscovery-tools.sh ├── upload_file_flask.py ├── url_status_checker.sh └── vms ├── README.md ├── app.py ├── database.db ├── models ├── Users.py ├── Users.pyc ├── __init__.py └── __init__.pyc ├── requirements.txt ├── static ├── css │ ├── bootstrap-rtl.css │ ├── bootstrap-rtl.min.css │ ├── bootstrap.css │ ├── bootstrap.min.css │ ├── custom.css │ ├── plugins │ │ └── morris.css │ ├── sb-admin-rtl.css │ └── sb-admin.css ├── font-awesome │ ├── css │ │ ├── font-awesome.css │ │ └── font-awesome.min.css │ ├── fonts │ │ ├── FontAwesome.otf │ │ ├── fontawesome-webfont.eot │ │ ├── fontawesome-webfont.svg │ │ ├── fontawesome-webfont.ttf │ │ └── fontawesome-webfont.woff │ ├── less │ │ ├── bordered-pulled.less │ │ ├── core.less │ │ ├── fixed-width.less │ │ ├── font-awesome.less │ │ ├── icons.less │ │ ├── larger.less │ │ ├── list.less │ │ ├── mixins.less │ │ ├── path.less │ │ ├── rotated-flipped.less │ │ ├── spinning.less │ │ ├── stacked.less │ │ └── variables.less │ └── scss │ │ ├── _bordered-pulled.scss │ │ ├── _core.scss │ │ ├── _fixed-width.scss │ │ ├── _icons.scss │ │ ├── _larger.scss │ │ ├── _list.scss │ │ ├── _mixins.scss │ │ ├── _path.scss │ │ ├── _rotated-flipped.scss │ │ ├── _spinning.scss │ │ ├── _stacked.scss │ │ ├── _variables.scss │ │ └── font-awesome.scss ├── fonts │ ├── glyphicons-halflings-regular.eot │ ├── glyphicons-halflings-regular.svg │ ├── glyphicons-halflings-regular.ttf │ ├── glyphicons-halflings-regular.woff │ └── glyphicons-halflings-regular.woff2 ├── images │ └── favicon.ico └── js │ ├── bootstrap.js │ ├── bootstrap.min.js │ ├── jquery.js │ └── plugins │ ├── flot │ ├── excanvas.min.js │ ├── flot-data.js │ ├── jquery.flot.js │ ├── jquery.flot.pie.js │ ├── jquery.flot.resize.js │ └── jquery.flot.tooltip.min.js │ └── morris │ ├── morris-data.js │ ├── morris.js │ ├── morris.min.js │ └── raphael.min.js └── templates ├── blank-page.html ├── bootstrap-elements.html ├── bootstrap-grid.html ├── charts.html ├── forms.html ├── index.html ├── login.html ├── profile.html ├── register.html ├── settings.html ├── site_template.html └── tables.html /ArduinoLibLED/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/ArduinoLibLED/.gitattributes -------------------------------------------------------------------------------- /ArduinoLibLED/LED_BRIGHTNESS.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/ArduinoLibLED/LED_BRIGHTNESS.zip -------------------------------------------------------------------------------- /ArduinoLibLED/LED_BRIGHTNESS/LED_BRIGHTNESS.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/ArduinoLibLED/LED_BRIGHTNESS/LED_BRIGHTNESS.cpp -------------------------------------------------------------------------------- /ArduinoLibLED/LED_BRIGHTNESS/LED_BRIGHTNESS.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/ArduinoLibLED/LED_BRIGHTNESS/LED_BRIGHTNESS.h -------------------------------------------------------------------------------- /ArduinoLibLED/LED_BRIGHTNESS/examples/Example1/Example1.ino: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/ArduinoLibLED/LED_BRIGHTNESS/examples/Example1/Example1.ino -------------------------------------------------------------------------------- /ArduinoLibLED/LED_BRIGHTNESS/keywords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/ArduinoLibLED/LED_BRIGHTNESS/keywords.txt -------------------------------------------------------------------------------- /ArduinoLibLED/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/ArduinoLibLED/README.md -------------------------------------------------------------------------------- /BunnyBoxCTF/CTFd_setup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/BunnyBoxCTF/CTFd_setup.sh -------------------------------------------------------------------------------- /BunnyBoxCTF/CreateWordlist.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/BunnyBoxCTF/CreateWordlist.sh -------------------------------------------------------------------------------- /BunnyBoxCTF/DiffieHellman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/BunnyBoxCTF/DiffieHellman.py -------------------------------------------------------------------------------- /BunnyBoxCTF/ExifTool-cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/BunnyBoxCTF/ExifTool-cmd -------------------------------------------------------------------------------- /BunnyBoxCTF/GZIP: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/BunnyBoxCTF/GZIP -------------------------------------------------------------------------------- /BunnyBoxCTF/KEYBOARDCODE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/BunnyBoxCTF/KEYBOARDCODE -------------------------------------------------------------------------------- /BunnyBoxCTF/POLYBIUS-CIPHER.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/BunnyBoxCTF/POLYBIUS-CIPHER.py -------------------------------------------------------------------------------- /BunnyBoxCTF/README.md: -------------------------------------------------------------------------------- 1 | # CTF-Writeups 2 | -------------------------------------------------------------------------------- /BunnyBoxCTF/RSA/RSA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/BunnyBoxCTF/RSA/RSA.py -------------------------------------------------------------------------------- /BunnyBoxCTF/RSA/RSA.py.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/BunnyBoxCTF/RSA/RSA.py.save -------------------------------------------------------------------------------- /BunnyBoxCTF/RSA/RSA3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/BunnyBoxCTF/RSA/RSA3.py -------------------------------------------------------------------------------- /BunnyBoxCTF/RSA/RSA4.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/BunnyBoxCTF/RSA/RSA4.py -------------------------------------------------------------------------------- /BunnyBoxCTF/RSA/RSAA.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/BunnyBoxCTF/RSA/RSAA.py -------------------------------------------------------------------------------- /BunnyBoxCTF/RSA/RSA_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/BunnyBoxCTF/RSA/RSA_decoder.py -------------------------------------------------------------------------------- /BunnyBoxCTF/RSA/RSA_little_exponent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/BunnyBoxCTF/RSA/RSA_little_exponent.py -------------------------------------------------------------------------------- /BunnyBoxCTF/RSA/decrypte_rsa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/BunnyBoxCTF/RSA/decrypte_rsa.py -------------------------------------------------------------------------------- /BunnyBoxCTF/RingZero/HashMePlease.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/BunnyBoxCTF/RingZero/HashMePlease.py -------------------------------------------------------------------------------- /BunnyBoxCTF/RingZero/HashReload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/BunnyBoxCTF/RingZero/HashReload.py -------------------------------------------------------------------------------- /BunnyBoxCTF/RingZero/hashBreaker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/BunnyBoxCTF/RingZero/hashBreaker.py -------------------------------------------------------------------------------- /BunnyBoxCTF/RingZero/prog/HateMath/flag.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/BunnyBoxCTF/RingZero/prog/HateMath/flag.py -------------------------------------------------------------------------------- /BunnyBoxCTF/SQL_injection_: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/BunnyBoxCTF/SQL_injection_ -------------------------------------------------------------------------------- /BunnyBoxCTF/USBKeyScan.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/BunnyBoxCTF/USBKeyScan.pdf -------------------------------------------------------------------------------- /BunnyBoxCTF/bash_python: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/BunnyBoxCTF/bash_python -------------------------------------------------------------------------------- /BunnyBoxCTF/bruteforce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/BunnyBoxCTF/bruteforce.py -------------------------------------------------------------------------------- /BunnyBoxCTF/calcule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/BunnyBoxCTF/calcule.py -------------------------------------------------------------------------------- /BunnyBoxCTF/cesar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/BunnyBoxCTF/cesar -------------------------------------------------------------------------------- /BunnyBoxCTF/convert_md5Hex_to_md5.py: -------------------------------------------------------------------------------- 1 | for m in md5s: 2 | print '%032x' % m -------------------------------------------------------------------------------- /BunnyBoxCTF/crackzip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/BunnyBoxCTF/crackzip -------------------------------------------------------------------------------- /BunnyBoxCTF/deary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/BunnyBoxCTF/deary.py -------------------------------------------------------------------------------- /BunnyBoxCTF/dec.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/BunnyBoxCTF/dec.py -------------------------------------------------------------------------------- /BunnyBoxCTF/decodeBase64: -------------------------------------------------------------------------------- 1 | echo c3RvcHRoYXRqcw== | base64 -d -------------------------------------------------------------------------------- /BunnyBoxCTF/flag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/BunnyBoxCTF/flag.php -------------------------------------------------------------------------------- /BunnyBoxCTF/flag_iceCTF.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/BunnyBoxCTF/flag_iceCTF.py -------------------------------------------------------------------------------- /BunnyBoxCTF/formatStringCMD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/BunnyBoxCTF/formatStringCMD -------------------------------------------------------------------------------- /BunnyBoxCTF/hill.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/BunnyBoxCTF/hill.py -------------------------------------------------------------------------------- /BunnyBoxCTF/inject_code: -------------------------------------------------------------------------------- 1 | '"";bash -p' -------------------------------------------------------------------------------- /BunnyBoxCTF/keyboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/BunnyBoxCTF/keyboard.py -------------------------------------------------------------------------------- /BunnyBoxCTF/math.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/BunnyBoxCTF/math.rb -------------------------------------------------------------------------------- /BunnyBoxCTF/mouse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/BunnyBoxCTF/mouse.py -------------------------------------------------------------------------------- /BunnyBoxCTF/overflow: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/BunnyBoxCTF/overflow -------------------------------------------------------------------------------- /BunnyBoxCTF/overflow_code_exec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/BunnyBoxCTF/overflow_code_exec -------------------------------------------------------------------------------- /BunnyBoxCTF/pic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/BunnyBoxCTF/pic.py -------------------------------------------------------------------------------- /BunnyBoxCTF/rev.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/BunnyBoxCTF/rev.py -------------------------------------------------------------------------------- /BunnyBoxCTF/rootme-XSLT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/BunnyBoxCTF/rootme-XSLT.txt -------------------------------------------------------------------------------- /BunnyBoxCTF/rootme-XXE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/BunnyBoxCTF/rootme-XXE.txt -------------------------------------------------------------------------------- /BunnyBoxCTF/shell.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/BunnyBoxCTF/shell.php -------------------------------------------------------------------------------- /BunnyBoxCTF/shellShoc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/BunnyBoxCTF/shellShoc -------------------------------------------------------------------------------- /BunnyBoxCTF/usb_for: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/BunnyBoxCTF/usb_for -------------------------------------------------------------------------------- /BunnyBoxCTF/xorfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/BunnyBoxCTF/xorfile.py -------------------------------------------------------------------------------- /CVE-2021-20090.sh: -------------------------------------------------------------------------------- 1 | curl -vk --path-as-is "http://IP/images/..%2findex.htm" 2 | -------------------------------------------------------------------------------- /LaZyGenerat0r/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/LaZyGenerat0r/README.md -------------------------------------------------------------------------------- /LaZyGenerat0r/lazyGen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/LaZyGenerat0r/lazyGen.py -------------------------------------------------------------------------------- /LampRapberryPI2-3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/LampRapberryPI2-3/README.md -------------------------------------------------------------------------------- /LampRapberryPI2-3/lampPi.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/LampRapberryPI2-3/lampPi.sh -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/README.md -------------------------------------------------------------------------------- /RouterPassword/routerdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/RouterPassword/routerdb.py -------------------------------------------------------------------------------- /SarahahPyNotifier/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/SarahahPyNotifier/README.md -------------------------------------------------------------------------------- /SarahahPyNotifier/saraha.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/SarahahPyNotifier/saraha.py -------------------------------------------------------------------------------- /Sql_insert_injection_Task/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/Sql_insert_injection_Task/Readme.md -------------------------------------------------------------------------------- /Sql_insert_injection_Task/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/Sql_insert_injection_Task/config.php -------------------------------------------------------------------------------- /Sql_insert_injection_Task/feeds.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/Sql_insert_injection_Task/feeds.php -------------------------------------------------------------------------------- /Sql_insert_injection_Task/home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/Sql_insert_injection_Task/home.php -------------------------------------------------------------------------------- /Sql_insert_injection_Task/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/Sql_insert_injection_Task/index.php -------------------------------------------------------------------------------- /Sql_insert_injection_Task/insert.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/Sql_insert_injection_Task/insert.php -------------------------------------------------------------------------------- /Sql_insert_injection_Task/insert_sql_injection.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/Sql_insert_injection_Task/insert_sql_injection.sql -------------------------------------------------------------------------------- /Sql_insert_injection_Task/theme/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/Sql_insert_injection_Task/theme/css/bootstrap.min.css -------------------------------------------------------------------------------- /Sql_insert_injection_Task/theme/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/Sql_insert_injection_Task/theme/js/jquery.js -------------------------------------------------------------------------------- /Sql_insert_injection_Task/theme/js/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/Sql_insert_injection_Task/theme/js/main.js -------------------------------------------------------------------------------- /Time-based-Blind-SQLi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/Time-based-Blind-SQLi.py -------------------------------------------------------------------------------- /TinyDB-Flask-Simple-CRUD/README.md: -------------------------------------------------------------------------------- 1 | ## Simple flask crud using TinyDB -------------------------------------------------------------------------------- /TinyDB-Flask-Simple-CRUD/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/TinyDB-Flask-Simple-CRUD/app.py -------------------------------------------------------------------------------- /TinyDB-Flask-Simple-CRUD/data/notebook.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/TinyDB-Flask-Simple-CRUD/data/notebook.json -------------------------------------------------------------------------------- /TinyDB-Flask-Simple-CRUD/static/css/main.css: -------------------------------------------------------------------------------- 1 | body { 2 | background: white; 3 | } 4 | -------------------------------------------------------------------------------- /TinyDB-Flask-Simple-CRUD/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/TinyDB-Flask-Simple-CRUD/templates/base.html -------------------------------------------------------------------------------- /TinyDB-Flask-Simple-CRUD/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/TinyDB-Flask-Simple-CRUD/templates/index.html -------------------------------------------------------------------------------- /TinyDB-Flask-Simple-CRUD/templates/snippets/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/TinyDB-Flask-Simple-CRUD/templates/snippets/form.html -------------------------------------------------------------------------------- /TinyDB-Flask-Simple-CRUD/templates/update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/TinyDB-Flask-Simple-CRUD/templates/update.html -------------------------------------------------------------------------------- /XXE-with-local-dtd-exploit.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/XXE-with-local-dtd-exploit.txt -------------------------------------------------------------------------------- /YouTubeTuto-Scripts/Arduino_library.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/YouTubeTuto-Scripts/Arduino_library.rar -------------------------------------------------------------------------------- /YouTubeTuto-Scripts/README.md: -------------------------------------------------------------------------------- 1 | # YouTubeTuto-Scripts 2 | -------------------------------------------------------------------------------- /YouTubeTuto-Scripts/Simple_TCP_ClientServer_C#/client.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/YouTubeTuto-Scripts/Simple_TCP_ClientServer_C#/client.txt -------------------------------------------------------------------------------- /YouTubeTuto-Scripts/Simple_TCP_ClientServer_C#/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/YouTubeTuto-Scripts/Simple_TCP_ClientServer_C#/readme.txt -------------------------------------------------------------------------------- /YouTubeTuto-Scripts/Simple_TCP_ClientServer_C#/server.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/YouTubeTuto-Scripts/Simple_TCP_ClientServer_C#/server.txt -------------------------------------------------------------------------------- /arduinoSerailToMysql/README.md: -------------------------------------------------------------------------------- 1 | # arduinoSerailToMysql 2 | -------------------------------------------------------------------------------- /arduinoSerailToMysql/RFID.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/arduinoSerailToMysql/RFID.sql -------------------------------------------------------------------------------- /arduinoSerailToMysql/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/arduinoSerailToMysql/api.py -------------------------------------------------------------------------------- /birthday-reminder-bot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/birthday-reminder-bot.py -------------------------------------------------------------------------------- /birthday.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/birthday.yaml -------------------------------------------------------------------------------- /bruteForce.py/BruteForce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/bruteForce.py/BruteForce.py -------------------------------------------------------------------------------- /bruteForce.py/passwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/bruteForce.py/passwords.txt -------------------------------------------------------------------------------- /clean-cme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/clean-cme -------------------------------------------------------------------------------- /competitive_programming/CodeForces/HQ9+.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/competitive_programming/CodeForces/HQ9+.py -------------------------------------------------------------------------------- /competitive_programming/CodeForces/HelpfulMath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/competitive_programming/CodeForces/HelpfulMath.py -------------------------------------------------------------------------------- /competitive_programming/CodeForces/expression.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/competitive_programming/CodeForces/expression.py -------------------------------------------------------------------------------- /competitive_programming/Hackerrank/Bit_manipulation/lonely_integer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/competitive_programming/Hackerrank/Bit_manipulation/lonely_integer.py -------------------------------------------------------------------------------- /competitive_programming/Hackerrank/Bit_manipulation/maximizinf_XOR: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/competitive_programming/Hackerrank/Bit_manipulation/maximizinf_XOR -------------------------------------------------------------------------------- /competitive_programming/Hackerrank/Implementation/BreakingRecodes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/competitive_programming/Hackerrank/Implementation/BreakingRecodes.py -------------------------------------------------------------------------------- /competitive_programming/Hackerrank/Implementation/Counting-valleys: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/competitive_programming/Hackerrank/Implementation/Counting-valleys -------------------------------------------------------------------------------- /competitive_programming/Hackerrank/Implementation/Divisible Sum Pairs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/competitive_programming/Hackerrank/Implementation/Divisible Sum Pairs -------------------------------------------------------------------------------- /competitive_programming/Hackerrank/Implementation/MigratoryBirds.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/competitive_programming/Hackerrank/Implementation/MigratoryBirds.py -------------------------------------------------------------------------------- /competitive_programming/Hackerrank/sorting/CountingSort1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/competitive_programming/Hackerrank/sorting/CountingSort1.py -------------------------------------------------------------------------------- /competitive_programming/Hackerrank/sorting/CountingSort2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/competitive_programming/Hackerrank/sorting/CountingSort2.py -------------------------------------------------------------------------------- /competitive_programming/Hackerrank/sorting/quickSort-1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/competitive_programming/Hackerrank/sorting/quickSort-1.py -------------------------------------------------------------------------------- /competitive_programming/Hackerrank/strings/AlternatingChara.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/competitive_programming/Hackerrank/strings/AlternatingChara.py -------------------------------------------------------------------------------- /competitive_programming/Hackerrank/strings/Love-letter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/competitive_programming/Hackerrank/strings/Love-letter.py -------------------------------------------------------------------------------- /competitive_programming/Hackerrank/strings/SuperReduced.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/competitive_programming/Hackerrank/strings/SuperReduced.py -------------------------------------------------------------------------------- /competitive_programming/Hackerrank/strings/marsExp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/competitive_programming/Hackerrank/strings/marsExp.py -------------------------------------------------------------------------------- /competitive_programming/Hackerrank/two_strings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/competitive_programming/Hackerrank/two_strings.py -------------------------------------------------------------------------------- /competitive_programming/README.md: -------------------------------------------------------------------------------- 1 | # competitive_programming 2 | -------------------------------------------------------------------------------- /connect-ssh.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/connect-ssh.sh -------------------------------------------------------------------------------- /cvss3/content.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/cvss3/content.html -------------------------------------------------------------------------------- /cvss3/cvss.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/cvss3/cvss.css -------------------------------------------------------------------------------- /cvss3/cvss.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/cvss3/cvss.js -------------------------------------------------------------------------------- /db/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/db/README.md -------------------------------------------------------------------------------- /db/db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/db/db -------------------------------------------------------------------------------- /excel_queries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/excel_queries.md -------------------------------------------------------------------------------- /find-ioc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/find-ioc.py -------------------------------------------------------------------------------- /flask-Sqlalchemy-Simple-CRUD/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/flask-Sqlalchemy-Simple-CRUD/app.py -------------------------------------------------------------------------------- /flask-Sqlalchemy-Simple-CRUD/notebook.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/flask-Sqlalchemy-Simple-CRUD/notebook.db -------------------------------------------------------------------------------- /flask-Sqlalchemy-Simple-CRUD/static/css/main.css: -------------------------------------------------------------------------------- 1 | body { 2 | background: white; 3 | } 4 | -------------------------------------------------------------------------------- /flask-Sqlalchemy-Simple-CRUD/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/flask-Sqlalchemy-Simple-CRUD/templates/base.html -------------------------------------------------------------------------------- /flask-Sqlalchemy-Simple-CRUD/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/flask-Sqlalchemy-Simple-CRUD/templates/index.html -------------------------------------------------------------------------------- /flask-Sqlalchemy-Simple-CRUD/templates/snippets/form.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/flask-Sqlalchemy-Simple-CRUD/templates/snippets/form.html -------------------------------------------------------------------------------- /flask-Sqlalchemy-Simple-CRUD/templates/update.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/flask-Sqlalchemy-Simple-CRUD/templates/update.html -------------------------------------------------------------------------------- /flask-starter-skeleton/.flaskenv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/flask-starter-skeleton/.flaskenv -------------------------------------------------------------------------------- /flask-starter-skeleton/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/flask-starter-skeleton/.gitignore -------------------------------------------------------------------------------- /flask-starter-skeleton/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flask-starter-skeleton/app/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/flask-starter-skeleton/app/__init__.py -------------------------------------------------------------------------------- /flask-starter-skeleton/app/auth/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flask-starter-skeleton/app/auth/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/flask-starter-skeleton/app/auth/forms.py -------------------------------------------------------------------------------- /flask-starter-skeleton/app/auth/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/flask-starter-skeleton/app/auth/models.py -------------------------------------------------------------------------------- /flask-starter-skeleton/app/auth/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/flask-starter-skeleton/app/auth/views.py -------------------------------------------------------------------------------- /flask-starter-skeleton/app/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/flask-starter-skeleton/app/forms.py -------------------------------------------------------------------------------- /flask-starter-skeleton/app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/flask-starter-skeleton/app/models.py -------------------------------------------------------------------------------- /flask-starter-skeleton/app/static/main.css: -------------------------------------------------------------------------------- 1 | /* custom css */ 2 | * { 3 | border-radius: 0 !important; 4 | } -------------------------------------------------------------------------------- /flask-starter-skeleton/app/static/main.js: -------------------------------------------------------------------------------- 1 | // custom javascript 2 | -------------------------------------------------------------------------------- /flask-starter-skeleton/app/templates/_macros.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /flask-starter-skeleton/app/templates/auth/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/flask-starter-skeleton/app/templates/auth/login.html -------------------------------------------------------------------------------- /flask-starter-skeleton/app/templates/auth/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/flask-starter-skeleton/app/templates/auth/register.html -------------------------------------------------------------------------------- /flask-starter-skeleton/app/templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/flask-starter-skeleton/app/templates/base.html -------------------------------------------------------------------------------- /flask-starter-skeleton/app/templates/error.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/flask-starter-skeleton/app/templates/error.html -------------------------------------------------------------------------------- /flask-starter-skeleton/app/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/flask-starter-skeleton/app/templates/index.html -------------------------------------------------------------------------------- /flask-starter-skeleton/app/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/flask-starter-skeleton/app/utils.py -------------------------------------------------------------------------------- /flask-starter-skeleton/app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/flask-starter-skeleton/app/views.py -------------------------------------------------------------------------------- /flask-starter-skeleton/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/flask-starter-skeleton/config.py -------------------------------------------------------------------------------- /flask-starter-skeleton/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/flask-starter-skeleton/requirements.txt -------------------------------------------------------------------------------- /flask-starter-skeleton/tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /flask-starter-skeleton/tests/test_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/flask-starter-skeleton/tests/test_app.py -------------------------------------------------------------------------------- /flask-starter-skeleton/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/flask-starter-skeleton/wsgi.py -------------------------------------------------------------------------------- /flask-swagger-api-token-auth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/flask-swagger-api-token-auth.py -------------------------------------------------------------------------------- /generate_fake_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/generate_fake_data.py -------------------------------------------------------------------------------- /hashLab/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/hashLab/README.md -------------------------------------------------------------------------------- /hashLab/c.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/hashLab/c.py -------------------------------------------------------------------------------- /hashLab/hashLab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/hashLab/hashLab.py -------------------------------------------------------------------------------- /iis-bruteforce.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/iis-bruteforce.py -------------------------------------------------------------------------------- /learn-pwn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/README.md -------------------------------------------------------------------------------- /learn-pwn/aslr/.gdb_history: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/aslr/.gdb_history -------------------------------------------------------------------------------- /learn-pwn/aslr/exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/aslr/exp.py -------------------------------------------------------------------------------- /learn-pwn/aslr/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/aslr/exploit.py -------------------------------------------------------------------------------- /learn-pwn/aslr/exploit/.gdb_history: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/aslr/exploit/.gdb_history -------------------------------------------------------------------------------- /learn-pwn/aslr/exploit/exploit32/crash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/aslr/exploit/exploit32/crash -------------------------------------------------------------------------------- /learn-pwn/aslr/exploit/exploit32/exploit.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/aslr/exploit/exploit32/exploit.c -------------------------------------------------------------------------------- /learn-pwn/aslr/exploit/exploit32/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/aslr/exploit/exploit32/exploit.py -------------------------------------------------------------------------------- /learn-pwn/aslr/exploit/exploit32/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/aslr/exploit/exploit32/p -------------------------------------------------------------------------------- /learn-pwn/aslr/exploit/exploit32/peda-session-dash.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/aslr/exploit/exploit32/peda-session-dash.txt -------------------------------------------------------------------------------- /learn-pwn/aslr/exploit/exploit32/peda-session-ls.txt: -------------------------------------------------------------------------------- 1 | break main 2 | disable $bpnum 3 | 4 | -------------------------------------------------------------------------------- /learn-pwn/aslr/exploit/exploit32/peda-session-ret2libc.txt: -------------------------------------------------------------------------------- 1 | break main 2 | 3 | -------------------------------------------------------------------------------- /learn-pwn/aslr/exploit/exploit32/ret2libc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/aslr/exploit/exploit32/ret2libc -------------------------------------------------------------------------------- /learn-pwn/aslr/exploit/exploit32/test: -------------------------------------------------------------------------------- 1 | iheb 2 | -------------------------------------------------------------------------------- /learn-pwn/aslr/exploit/exploit64/.gdb_history: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/aslr/exploit/exploit64/.gdb_history -------------------------------------------------------------------------------- /learn-pwn/aslr/exploit/exploit64/crash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/aslr/exploit/exploit64/crash -------------------------------------------------------------------------------- /learn-pwn/aslr/exploit/exploit64/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/aslr/exploit/exploit64/exploit.py -------------------------------------------------------------------------------- /learn-pwn/aslr/exploit/exploit64/peda-session-ret2libc.txt: -------------------------------------------------------------------------------- 1 | break main 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /learn-pwn/aslr/exploit/exploit64/peda-session-vuln.txt: -------------------------------------------------------------------------------- 1 | break main 2 | 3 | 4 | -------------------------------------------------------------------------------- /learn-pwn/aslr/exploit/exploit64/ret2libc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/aslr/exploit/exploit64/ret2libc -------------------------------------------------------------------------------- /learn-pwn/aslr/exploit/exploit64/ret2libc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/aslr/exploit/exploit64/ret2libc.c -------------------------------------------------------------------------------- /learn-pwn/aslr/exploit/exploit64/smash: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/aslr/exploit/exploit64/smash -------------------------------------------------------------------------------- /learn-pwn/aslr/exploit/exploit64/vuln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/aslr/exploit/exploit64/vuln -------------------------------------------------------------------------------- /learn-pwn/aslr/exploit/exploit64/vuln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/aslr/exploit/exploit64/vuln.c -------------------------------------------------------------------------------- /learn-pwn/aslr/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/aslr/p -------------------------------------------------------------------------------- /learn-pwn/aslr/peda-session-libc-2.29.so.txt: -------------------------------------------------------------------------------- 1 | tbreak _start 2 | 3 | -------------------------------------------------------------------------------- /learn-pwn/aslr/peda-session-vuln.txt: -------------------------------------------------------------------------------- 1 | tbreak main 2 | 3 | -------------------------------------------------------------------------------- /learn-pwn/aslr/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/aslr/test.py -------------------------------------------------------------------------------- /learn-pwn/aslr/vuln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/aslr/vuln -------------------------------------------------------------------------------- /learn-pwn/aslr/vuln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/aslr/vuln.c -------------------------------------------------------------------------------- /learn-pwn/easy-file/exploit-easyFileShare7.3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/easy-file/exploit-easyFileShare7.3.py -------------------------------------------------------------------------------- /learn-pwn/easy-file/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/easy-file/exploit.py -------------------------------------------------------------------------------- /learn-pwn/easy-file/get-fuzz.spk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/easy-file/get-fuzz.spk -------------------------------------------------------------------------------- /learn-pwn/easy-file/get_fuzz_easyFileShare.spk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/easy-file/get_fuzz_easyFileShare.spk -------------------------------------------------------------------------------- /learn-pwn/elearning/.gdb_history: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/elearning/.gdb_history -------------------------------------------------------------------------------- /learn-pwn/elearning/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/elearning/exploit.py -------------------------------------------------------------------------------- /learn-pwn/elearning/fmt.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/elearning/fmt.c -------------------------------------------------------------------------------- /learn-pwn/elearning/fmt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/elearning/fmt.py -------------------------------------------------------------------------------- /learn-pwn/elearning/peda-session-vuln0.txt: -------------------------------------------------------------------------------- 1 | break main 2 | 3 | -------------------------------------------------------------------------------- /learn-pwn/mm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/mm.py -------------------------------------------------------------------------------- /learn-pwn/ret2libc/.gdb_history: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/ret2libc/.gdb_history -------------------------------------------------------------------------------- /learn-pwn/ret2libc/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/ret2libc/exploit.py -------------------------------------------------------------------------------- /learn-pwn/ret2libc/peda-session-vuln.txt: -------------------------------------------------------------------------------- 1 | break main 2 | 3 | -------------------------------------------------------------------------------- /learn-pwn/ret2libc/vuln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/ret2libc/vuln -------------------------------------------------------------------------------- /learn-pwn/ret2libc/vuln.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/ret2libc/vuln.c -------------------------------------------------------------------------------- /learn-pwn/ropemprium/callme/callme32/.gdb_history: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/ropemprium/callme/callme32/.gdb_history -------------------------------------------------------------------------------- /learn-pwn/ropemprium/callme/callme32/callme32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/ropemprium/callme/callme32/callme32 -------------------------------------------------------------------------------- /learn-pwn/ropemprium/callme/callme32/encrypted_flag.txt: -------------------------------------------------------------------------------- 1 | SMSA~gXxekhieactt`L''tnl|E}p|y>]! 2 | -------------------------------------------------------------------------------- /learn-pwn/ropemprium/callme/callme32/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/ropemprium/callme/callme32/exploit.py -------------------------------------------------------------------------------- /learn-pwn/ropemprium/callme/callme32/key1.dat: -------------------------------------------------------------------------------- 1 |  2 |  -------------------------------------------------------------------------------- /learn-pwn/ropemprium/callme/callme32/key2.dat: -------------------------------------------------------------------------------- 1 |  -------------------------------------------------------------------------------- /learn-pwn/ropemprium/callme/callme32/libcallme32.so: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/ropemprium/callme/callme32/libcallme32.so -------------------------------------------------------------------------------- /learn-pwn/ropemprium/callme/callme32/m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/ropemprium/callme/callme32/m -------------------------------------------------------------------------------- /learn-pwn/ropemprium/callme/callme32/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/ropemprium/callme/callme32/p -------------------------------------------------------------------------------- /learn-pwn/ropemprium/callme/callme32/peda-session-callme32.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/ropemprium/callme/callme32/peda-session-callme32.txt -------------------------------------------------------------------------------- /learn-pwn/ropemprium/challenges-list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/ropemprium/challenges-list.txt -------------------------------------------------------------------------------- /learn-pwn/ropemprium/fluff/fluff/flag.txt: -------------------------------------------------------------------------------- 1 | ROPE{a_placeholder_32byte_flag!} 2 | -------------------------------------------------------------------------------- /learn-pwn/ropemprium/fluff/fluff/fluff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/ropemprium/fluff/fluff/fluff -------------------------------------------------------------------------------- /learn-pwn/ropemprium/fluff/fluff32/.gdb_history: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/ropemprium/fluff/fluff32/.gdb_history -------------------------------------------------------------------------------- /learn-pwn/ropemprium/fluff/fluff32/exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/ropemprium/fluff/fluff32/exp.py -------------------------------------------------------------------------------- /learn-pwn/ropemprium/fluff/fluff32/flag.txt: -------------------------------------------------------------------------------- 1 | ROPE{a_placeholder_32byte_flag!} 2 | -------------------------------------------------------------------------------- /learn-pwn/ropemprium/fluff/fluff32/fluff32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/ropemprium/fluff/fluff32/fluff32 -------------------------------------------------------------------------------- /learn-pwn/ropemprium/fluff/fluff32/m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/ropemprium/fluff/fluff32/m -------------------------------------------------------------------------------- /learn-pwn/ropemprium/fluff/fluff32/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/ropemprium/fluff/fluff32/p -------------------------------------------------------------------------------- /learn-pwn/ropemprium/fluff/fluff32/peda-session-fluff32.txt: -------------------------------------------------------------------------------- 1 | break questionableGadgets 2 | 3 | -------------------------------------------------------------------------------- /learn-pwn/ropemprium/ret2win/.gdb_history: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/ropemprium/ret2win/.gdb_history -------------------------------------------------------------------------------- /learn-pwn/ropemprium/ret2win/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/ropemprium/ret2win/exploit.py -------------------------------------------------------------------------------- /learn-pwn/ropemprium/ret2win/flag.txt: -------------------------------------------------------------------------------- 1 | ROPE{a_placeholder_32byte_flag!} 2 | -------------------------------------------------------------------------------- /learn-pwn/ropemprium/ret2win/p: -------------------------------------------------------------------------------- 1 | st$8 -------------------------------------------------------------------------------- /learn-pwn/ropemprium/ret2win/peda-session-ret2win32.txt: -------------------------------------------------------------------------------- 1 | tbreak main 2 | 3 | -------------------------------------------------------------------------------- /learn-pwn/ropemprium/ret2win/ret2win32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/ropemprium/ret2win/ret2win32 -------------------------------------------------------------------------------- /learn-pwn/ropemprium/ret2win/ret2win32.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/ropemprium/ret2win/ret2win32.zip -------------------------------------------------------------------------------- /learn-pwn/ropemprium/split/.gdb_history: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/ropemprium/split/.gdb_history -------------------------------------------------------------------------------- /learn-pwn/ropemprium/split/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/ropemprium/split/exploit.py -------------------------------------------------------------------------------- /learn-pwn/ropemprium/split/flag.txt: -------------------------------------------------------------------------------- 1 | ROPE{a_placeholder_32byte_flag!} 2 | -------------------------------------------------------------------------------- /learn-pwn/ropemprium/split/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/ropemprium/split/p -------------------------------------------------------------------------------- /learn-pwn/ropemprium/split/peda-session-split.txt: -------------------------------------------------------------------------------- 1 | break main 2 | 3 | -------------------------------------------------------------------------------- /learn-pwn/ropemprium/split/split: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/ropemprium/split/split -------------------------------------------------------------------------------- /learn-pwn/ropemprium/split/split32/.gdb_history: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/ropemprium/split/split32/.gdb_history -------------------------------------------------------------------------------- /learn-pwn/ropemprium/split/split32/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/ropemprium/split/split32/exploit.py -------------------------------------------------------------------------------- /learn-pwn/ropemprium/split/split32/flag.txt: -------------------------------------------------------------------------------- 1 | ROPE{a_placeholder_32byte_flag!} 2 | -------------------------------------------------------------------------------- /learn-pwn/ropemprium/split/split32/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/ropemprium/split/split32/p -------------------------------------------------------------------------------- /learn-pwn/ropemprium/split/split32/peda-session-split32.txt: -------------------------------------------------------------------------------- 1 | break *main 2 | 3 | -------------------------------------------------------------------------------- /learn-pwn/ropemprium/split/split32/split32: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/ropemprium/split/split32/split32 -------------------------------------------------------------------------------- /learn-pwn/ropemprium/write4/.gdb_history: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/ropemprium/write4/.gdb_history -------------------------------------------------------------------------------- /learn-pwn/ropemprium/write4/write4/.gdb_history: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/ropemprium/write4/write4/.gdb_history -------------------------------------------------------------------------------- /learn-pwn/ropemprium/write4/write4/exp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/ropemprium/write4/write4/exp.py -------------------------------------------------------------------------------- /learn-pwn/ropemprium/write4/write4/flag.txt: -------------------------------------------------------------------------------- 1 | ROPE{a_placeholder_32byte_flag!} 2 | -------------------------------------------------------------------------------- /learn-pwn/ropemprium/write4/write4/m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/ropemprium/write4/write4/m -------------------------------------------------------------------------------- /learn-pwn/ropemprium/write4/write4/p: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/ropemprium/write4/write4/p -------------------------------------------------------------------------------- /learn-pwn/ropemprium/write4/write4/peda-session-write4.txt: -------------------------------------------------------------------------------- 1 | break usefulGadgets 2 | 3 | -------------------------------------------------------------------------------- /learn-pwn/ropemprium/write4/write4/write4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/ropemprium/write4/write4/write4 -------------------------------------------------------------------------------- /learn-pwn/ropemprium/write4/write432/.gdb_history: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/ropemprium/write4/write432/.gdb_history -------------------------------------------------------------------------------- /learn-pwn/ropemprium/write4/write432/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/ropemprium/write4/write432/exploit.py -------------------------------------------------------------------------------- /learn-pwn/ropemprium/write4/write432/flag.txt: -------------------------------------------------------------------------------- 1 | ROPE{a_placeholder_32byte_flag!} 2 | -------------------------------------------------------------------------------- /learn-pwn/vulnserver/GMON/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/vulnserver/GMON/exploit.py -------------------------------------------------------------------------------- /learn-pwn/vulnserver/GMON/pwnme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/vulnserver/GMON/pwnme.py -------------------------------------------------------------------------------- /learn-pwn/vulnserver/HTER/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/vulnserver/HTER/exploit.py -------------------------------------------------------------------------------- /learn-pwn/vulnserver/KSTET/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/vulnserver/KSTET/exploit.py -------------------------------------------------------------------------------- /learn-pwn/vulnserver/TRUN/ex.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/vulnserver/TRUN/ex.py -------------------------------------------------------------------------------- /learn-pwn/vulnserver/TRUN/exploit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/vulnserver/TRUN/exploit.py -------------------------------------------------------------------------------- /learn-pwn/vulnserver/TRUN/fuzz.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/vulnserver/TRUN/fuzz.py -------------------------------------------------------------------------------- /learn-pwn/vulnserver/TRUN/vulnserv.spk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/learn-pwn/vulnserver/TRUN/vulnserv.spk -------------------------------------------------------------------------------- /log4j.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/log4j.py -------------------------------------------------------------------------------- /mini-scanner/Apache-CVE-2021-41773.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/mini-scanner/Apache-CVE-2021-41773.sh -------------------------------------------------------------------------------- /mini-scanner/Apache-Flink-CVE-2020-17519.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/mini-scanner/Apache-Flink-CVE-2020-17519.sh -------------------------------------------------------------------------------- /mini-scanner/BIG-IPF5_CVE-2020-5902.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/mini-scanner/BIG-IPF5_CVE-2020-5902.sh -------------------------------------------------------------------------------- /mini-scanner/PanOs_CVE-2025-0108_LoginByPass.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/mini-scanner/PanOs_CVE-2025-0108_LoginByPass.txt -------------------------------------------------------------------------------- /mini-scanner/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/mini-scanner/README.md -------------------------------------------------------------------------------- /mini-scanner/VMwarevCenter_path_traversal.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/mini-scanner/VMwarevCenter_path_traversal.sh -------------------------------------------------------------------------------- /mini-scanner/citrix_CVE-2019-19781.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/mini-scanner/citrix_CVE-2019-19781.sh -------------------------------------------------------------------------------- /mini-scanner/scan_cisco_asa_CVE-2020-3452.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/mini-scanner/scan_cisco_asa_CVE-2020-3452.sh -------------------------------------------------------------------------------- /mini-scanner/template.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/mini-scanner/template.sh -------------------------------------------------------------------------------- /naabu_finger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/naabu_finger/README.md -------------------------------------------------------------------------------- /naabu_finger/finger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/naabu_finger/finger.py -------------------------------------------------------------------------------- /naabu_finger/service-names-port-numbers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/naabu_finger/service-names-port-numbers.json -------------------------------------------------------------------------------- /notes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/notes.txt -------------------------------------------------------------------------------- /nuclei-templates/CVE-2002-0561.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/nuclei-templates/CVE-2002-0561.yaml -------------------------------------------------------------------------------- /nuclei-templates/CVE-2020-14181-Jira-UserEnumeration.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/nuclei-templates/CVE-2020-14181-Jira-UserEnumeration.yaml -------------------------------------------------------------------------------- /nuclei-templates/CVE-2020-14882.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/nuclei-templates/CVE-2020-14882.yaml -------------------------------------------------------------------------------- /nuclei-templates/apache-webdav-directory-listing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/nuclei-templates/apache-webdav-directory-listing.yaml -------------------------------------------------------------------------------- /nuclei-templates/avaya-aura-communication-manager-shell-shock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/nuclei-templates/avaya-aura-communication-manager-shell-shock.yaml -------------------------------------------------------------------------------- /nuclei-templates/check-point-panel.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/nuclei-templates/check-point-panel.yaml -------------------------------------------------------------------------------- /nuclei-templates/hp-ilo4-CVE-2017-12542.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/nuclei-templates/hp-ilo4-CVE-2017-12542.yaml -------------------------------------------------------------------------------- /nuclei-templates/tomcat-put-CVE-2017-12615.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/nuclei-templates/tomcat-put-CVE-2017-12615.yaml -------------------------------------------------------------------------------- /pulseSecureVersion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/pulseSecureVersion.sh -------------------------------------------------------------------------------- /pwnerrank_Notifier/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/pwnerrank_Notifier/README.md -------------------------------------------------------------------------------- /pwnerrank_Notifier/notifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/pwnerrank_Notifier/notifier.py -------------------------------------------------------------------------------- /pwnerrank_Notifier/old.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/pwnerrank_Notifier/old.db -------------------------------------------------------------------------------- /rubber_ducky_payload.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/rubber_ducky_payload.txt -------------------------------------------------------------------------------- /serpico/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/serpico/api.py -------------------------------------------------------------------------------- /services_health_check.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/services_health_check.sh -------------------------------------------------------------------------------- /subs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/subs/README.md -------------------------------------------------------------------------------- /subs/subs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/subs/subs.sh -------------------------------------------------------------------------------- /tekup-CTF/README.md: -------------------------------------------------------------------------------- 1 | # tekup-CTF -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/.gitignore -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/.ruby-version: -------------------------------------------------------------------------------- 1 | ruby-2.5.1 -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/Gemfile -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/Gemfile.lock -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/README.md -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/Rakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/Rakefile -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/app/assets/config/manifest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/app/assets/config/manifest.js -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/app/assets/images/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/app/assets/javascripts/application.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/app/assets/javascripts/application.js -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/app/assets/javascripts/cable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/app/assets/javascripts/cable.js -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/app/assets/javascripts/channels/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/app/assets/javascripts/chybeta.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/app/assets/javascripts/chybeta.coffee -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/app/assets/stylesheets/application.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/app/assets/stylesheets/application.css -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/app/assets/stylesheets/chybeta.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/app/assets/stylesheets/chybeta.scss -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/app/channels/application_cable/channel.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/app/channels/application_cable/channel.rb -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/app/channels/application_cable/connection.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/app/channels/application_cable/connection.rb -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/app/controllers/application_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/app/controllers/application_controller.rb -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/app/controllers/chybeta_controller.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/app/controllers/chybeta_controller.rb -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/app/controllers/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/app/helpers/application_helper.rb: -------------------------------------------------------------------------------- 1 | module ApplicationHelper 2 | end 3 | -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/app/helpers/chybeta_helper.rb: -------------------------------------------------------------------------------- 1 | module ChybetaHelper 2 | end 3 | -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/app/jobs/application_job.rb: -------------------------------------------------------------------------------- 1 | class ApplicationJob < ActiveJob::Base 2 | end 3 | -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/app/mailers/application_mailer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/app/mailers/application_mailer.rb -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/app/models/application_record.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/app/models/application_record.rb -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/app/models/concerns/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/app/views/layouts/application.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/app/views/layouts/application.html.erb -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/app/views/layouts/mailer.html.erb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/app/views/layouts/mailer.html.erb -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/app/views/layouts/mailer.text.erb: -------------------------------------------------------------------------------- 1 | <%= yield %> 2 | -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/bin/bundle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/bin/bundle -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/bin/rails: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/bin/rails -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/bin/rake: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/bin/rake -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/bin/setup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/bin/setup -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/bin/update: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/bin/update -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/bin/yarn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/bin/yarn -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/config.ru: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/config.ru -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/config/application.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/config/application.rb -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/config/boot.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/config/boot.rb -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/config/cable.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/config/cable.yml -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/config/credentials.yml.enc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/config/credentials.yml.enc -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/config/database.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/config/database.yml -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/config/environment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/config/environment.rb -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/config/environments/development.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/config/environments/development.rb -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/config/environments/production.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/config/environments/production.rb -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/config/environments/test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/config/environments/test.rb -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/config/initializers/application_controller_renderer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/config/initializers/application_controller_renderer.rb -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/config/initializers/assets.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/config/initializers/assets.rb -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/config/initializers/backtrace_silencers.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/config/initializers/backtrace_silencers.rb -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/config/initializers/content_security_policy.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/config/initializers/content_security_policy.rb -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/config/initializers/cookies_serializer.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/config/initializers/cookies_serializer.rb -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/config/initializers/filter_parameter_logging.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/config/initializers/filter_parameter_logging.rb -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/config/initializers/inflections.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/config/initializers/inflections.rb -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/config/initializers/mime_types.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/config/initializers/mime_types.rb -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/config/initializers/wrap_parameters.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/config/initializers/wrap_parameters.rb -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/config/locales/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/config/locales/en.yml -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/config/puma.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/config/puma.rb -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/config/routes.rb: -------------------------------------------------------------------------------- 1 | Rails.application.routes.draw do 2 | resources :chybeta 3 | end -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/config/spring.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/config/spring.rb -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/config/storage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/config/storage.yml -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/db/seeds.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/db/seeds.rb -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/lib/assets/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/lib/tasks/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/log/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/package.json -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/public/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/public/404.html -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/public/422.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/public/422.html -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/public/500.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/public/500.html -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/public/apple-touch-icon-precomposed.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/public/apple-touch-icon.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/public/favicon.ico: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/public/robots.txt -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/storage/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/test/application_system_test_case.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/test/application_system_test_case.rb -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/test/controllers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/test/controllers/chybeta_controller_test.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/test/controllers/chybeta_controller_test.rb -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/test/fixtures/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/test/fixtures/files/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/test/helpers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/test/integration/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/test/mailers/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/test/models/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/test/system/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/test/test_helper.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/test/test_helper.rb -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/tmp/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tekup-CTF/WEB200/Rails-LFI-CVE-2019-5418/vendor/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tekup-CTF/arduino flag: -------------------------------------------------------------------------------- 1 | flag{3b9a31cffcb5aeb6dcf0a747800d6f07} 2 | -------------------------------------------------------------------------------- /tekup-CTF/crypto80/b64.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tekup-CTF/crypto80/b64.py -------------------------------------------------------------------------------- /tekup-CTF/crypto80/description.txt: -------------------------------------------------------------------------------- 1 | Weird file content ! can you figure it out ?! 2 | 3 | -------------------------------------------------------------------------------- /tekup-CTF/crypto80/solve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tekup-CTF/crypto80/solve.py -------------------------------------------------------------------------------- /tekup-CTF/ducky-flag: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tekup-CTF/ducky-flag -------------------------------------------------------------------------------- /tekup-CTF/ducky-task: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tekup-CTF/ducky-task -------------------------------------------------------------------------------- /tekup-CTF/inject.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tekup-CTF/inject.bin -------------------------------------------------------------------------------- /tekup-CTF/tekup_task.ino.hex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tekup-CTF/tekup_task.ino.hex -------------------------------------------------------------------------------- /test-2023-11-03-15-29-28-429.xml.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/test-2023-11-03-15-29-28-429.xml.zip -------------------------------------------------------------------------------- /testme_z.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/testme_z.ps1 -------------------------------------------------------------------------------- /tiny-framework/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tiny-framework/README.md -------------------------------------------------------------------------------- /tiny-framework/dbTest/testdb.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tiny-framework/dbTest/testdb.sql -------------------------------------------------------------------------------- /tiny-framework/includes/MysqliDb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tiny-framework/includes/MysqliDb.php -------------------------------------------------------------------------------- /tiny-framework/includes/bootstrap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tiny-framework/includes/bootstrap.php -------------------------------------------------------------------------------- /tiny-framework/includes/classes/class.users.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tiny-framework/includes/classes/class.users.php -------------------------------------------------------------------------------- /tiny-framework/includes/config.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tiny-framework/includes/config.php -------------------------------------------------------------------------------- /tiny-framework/includes/functions/security.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tiny-framework/includes/functions/security.php -------------------------------------------------------------------------------- /tiny-framework/index.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tiny-framework/index.php -------------------------------------------------------------------------------- /tiny-framework/templates/layout.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tiny-framework/templates/layout.php -------------------------------------------------------------------------------- /tiny-framework/themes/css/AdminLTE.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tiny-framework/themes/css/AdminLTE.css -------------------------------------------------------------------------------- /tiny-framework/themes/css/AdminLTE.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tiny-framework/themes/css/AdminLTE.min.css -------------------------------------------------------------------------------- /tiny-framework/themes/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tiny-framework/themes/css/bootstrap.css -------------------------------------------------------------------------------- /tiny-framework/themes/css/bootstrap.css.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tiny-framework/themes/css/bootstrap.css.map -------------------------------------------------------------------------------- /tiny-framework/themes/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tiny-framework/themes/css/bootstrap.min.css -------------------------------------------------------------------------------- /tiny-framework/themes/css/materialize.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tiny-framework/themes/css/materialize.min.css -------------------------------------------------------------------------------- /tiny-framework/themes/css/skin-blue.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tiny-framework/themes/css/skin-blue.css -------------------------------------------------------------------------------- /tiny-framework/themes/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tiny-framework/themes/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /tiny-framework/themes/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tiny-framework/themes/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /tiny-framework/themes/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tiny-framework/themes/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /tiny-framework/themes/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tiny-framework/themes/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /tiny-framework/themes/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tiny-framework/themes/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /tiny-framework/themes/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tiny-framework/themes/js/bootstrap.js -------------------------------------------------------------------------------- /tiny-framework/themes/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tiny-framework/themes/js/bootstrap.min.js -------------------------------------------------------------------------------- /tiny-framework/themes/js/custom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tiny-framework/themes/js/custom.js -------------------------------------------------------------------------------- /tiny-framework/themes/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tiny-framework/themes/js/jquery.js -------------------------------------------------------------------------------- /tiny-framework/themes/js/materialize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tiny-framework/themes/js/materialize.js -------------------------------------------------------------------------------- /tiny-framework/themes/js/npm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/tiny-framework/themes/js/npm.js -------------------------------------------------------------------------------- /update-chrome.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/update-chrome.sh -------------------------------------------------------------------------------- /update-firefox.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/update-firefox.sh -------------------------------------------------------------------------------- /update-projectdiscovery-tools.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/update-projectdiscovery-tools.sh -------------------------------------------------------------------------------- /upload_file_flask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/upload_file_flask.py -------------------------------------------------------------------------------- /url_status_checker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/url_status_checker.sh -------------------------------------------------------------------------------- /vms/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/README.md -------------------------------------------------------------------------------- /vms/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/app.py -------------------------------------------------------------------------------- /vms/database.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/database.db -------------------------------------------------------------------------------- /vms/models/Users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/models/Users.py -------------------------------------------------------------------------------- /vms/models/Users.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/models/Users.pyc -------------------------------------------------------------------------------- /vms/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /vms/models/__init__.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/models/__init__.pyc -------------------------------------------------------------------------------- /vms/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/requirements.txt -------------------------------------------------------------------------------- /vms/static/css/bootstrap-rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/static/css/bootstrap-rtl.css -------------------------------------------------------------------------------- /vms/static/css/bootstrap-rtl.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/static/css/bootstrap-rtl.min.css -------------------------------------------------------------------------------- /vms/static/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/static/css/bootstrap.css -------------------------------------------------------------------------------- /vms/static/css/bootstrap.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/static/css/bootstrap.min.css -------------------------------------------------------------------------------- /vms/static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/static/css/custom.css -------------------------------------------------------------------------------- /vms/static/css/plugins/morris.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/static/css/plugins/morris.css -------------------------------------------------------------------------------- /vms/static/css/sb-admin-rtl.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/static/css/sb-admin-rtl.css -------------------------------------------------------------------------------- /vms/static/css/sb-admin.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/static/css/sb-admin.css -------------------------------------------------------------------------------- /vms/static/font-awesome/css/font-awesome.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/static/font-awesome/css/font-awesome.css -------------------------------------------------------------------------------- /vms/static/font-awesome/css/font-awesome.min.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/static/font-awesome/css/font-awesome.min.css -------------------------------------------------------------------------------- /vms/static/font-awesome/fonts/FontAwesome.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/static/font-awesome/fonts/FontAwesome.otf -------------------------------------------------------------------------------- /vms/static/font-awesome/fonts/fontawesome-webfont.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/static/font-awesome/fonts/fontawesome-webfont.eot -------------------------------------------------------------------------------- /vms/static/font-awesome/fonts/fontawesome-webfont.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/static/font-awesome/fonts/fontawesome-webfont.svg -------------------------------------------------------------------------------- /vms/static/font-awesome/fonts/fontawesome-webfont.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/static/font-awesome/fonts/fontawesome-webfont.ttf -------------------------------------------------------------------------------- /vms/static/font-awesome/fonts/fontawesome-webfont.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/static/font-awesome/fonts/fontawesome-webfont.woff -------------------------------------------------------------------------------- /vms/static/font-awesome/less/bordered-pulled.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/static/font-awesome/less/bordered-pulled.less -------------------------------------------------------------------------------- /vms/static/font-awesome/less/core.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/static/font-awesome/less/core.less -------------------------------------------------------------------------------- /vms/static/font-awesome/less/fixed-width.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/static/font-awesome/less/fixed-width.less -------------------------------------------------------------------------------- /vms/static/font-awesome/less/font-awesome.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/static/font-awesome/less/font-awesome.less -------------------------------------------------------------------------------- /vms/static/font-awesome/less/icons.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/static/font-awesome/less/icons.less -------------------------------------------------------------------------------- /vms/static/font-awesome/less/larger.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/static/font-awesome/less/larger.less -------------------------------------------------------------------------------- /vms/static/font-awesome/less/list.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/static/font-awesome/less/list.less -------------------------------------------------------------------------------- /vms/static/font-awesome/less/mixins.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/static/font-awesome/less/mixins.less -------------------------------------------------------------------------------- /vms/static/font-awesome/less/path.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/static/font-awesome/less/path.less -------------------------------------------------------------------------------- /vms/static/font-awesome/less/rotated-flipped.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/static/font-awesome/less/rotated-flipped.less -------------------------------------------------------------------------------- /vms/static/font-awesome/less/spinning.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/static/font-awesome/less/spinning.less -------------------------------------------------------------------------------- /vms/static/font-awesome/less/stacked.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/static/font-awesome/less/stacked.less -------------------------------------------------------------------------------- /vms/static/font-awesome/less/variables.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/static/font-awesome/less/variables.less -------------------------------------------------------------------------------- /vms/static/font-awesome/scss/_bordered-pulled.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/static/font-awesome/scss/_bordered-pulled.scss -------------------------------------------------------------------------------- /vms/static/font-awesome/scss/_core.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/static/font-awesome/scss/_core.scss -------------------------------------------------------------------------------- /vms/static/font-awesome/scss/_fixed-width.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/static/font-awesome/scss/_fixed-width.scss -------------------------------------------------------------------------------- /vms/static/font-awesome/scss/_icons.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/static/font-awesome/scss/_icons.scss -------------------------------------------------------------------------------- /vms/static/font-awesome/scss/_larger.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/static/font-awesome/scss/_larger.scss -------------------------------------------------------------------------------- /vms/static/font-awesome/scss/_list.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/static/font-awesome/scss/_list.scss -------------------------------------------------------------------------------- /vms/static/font-awesome/scss/_mixins.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/static/font-awesome/scss/_mixins.scss -------------------------------------------------------------------------------- /vms/static/font-awesome/scss/_path.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/static/font-awesome/scss/_path.scss -------------------------------------------------------------------------------- /vms/static/font-awesome/scss/_rotated-flipped.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/static/font-awesome/scss/_rotated-flipped.scss -------------------------------------------------------------------------------- /vms/static/font-awesome/scss/_spinning.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/static/font-awesome/scss/_spinning.scss -------------------------------------------------------------------------------- /vms/static/font-awesome/scss/_stacked.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/static/font-awesome/scss/_stacked.scss -------------------------------------------------------------------------------- /vms/static/font-awesome/scss/_variables.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/static/font-awesome/scss/_variables.scss -------------------------------------------------------------------------------- /vms/static/font-awesome/scss/font-awesome.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/static/font-awesome/scss/font-awesome.scss -------------------------------------------------------------------------------- /vms/static/fonts/glyphicons-halflings-regular.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/static/fonts/glyphicons-halflings-regular.eot -------------------------------------------------------------------------------- /vms/static/fonts/glyphicons-halflings-regular.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/static/fonts/glyphicons-halflings-regular.svg -------------------------------------------------------------------------------- /vms/static/fonts/glyphicons-halflings-regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/static/fonts/glyphicons-halflings-regular.ttf -------------------------------------------------------------------------------- /vms/static/fonts/glyphicons-halflings-regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/static/fonts/glyphicons-halflings-regular.woff -------------------------------------------------------------------------------- /vms/static/fonts/glyphicons-halflings-regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/static/fonts/glyphicons-halflings-regular.woff2 -------------------------------------------------------------------------------- /vms/static/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/static/images/favicon.ico -------------------------------------------------------------------------------- /vms/static/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/static/js/bootstrap.js -------------------------------------------------------------------------------- /vms/static/js/bootstrap.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/static/js/bootstrap.min.js -------------------------------------------------------------------------------- /vms/static/js/jquery.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/static/js/jquery.js -------------------------------------------------------------------------------- /vms/static/js/plugins/flot/excanvas.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/static/js/plugins/flot/excanvas.min.js -------------------------------------------------------------------------------- /vms/static/js/plugins/flot/flot-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/static/js/plugins/flot/flot-data.js -------------------------------------------------------------------------------- /vms/static/js/plugins/flot/jquery.flot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/static/js/plugins/flot/jquery.flot.js -------------------------------------------------------------------------------- /vms/static/js/plugins/flot/jquery.flot.pie.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/static/js/plugins/flot/jquery.flot.pie.js -------------------------------------------------------------------------------- /vms/static/js/plugins/flot/jquery.flot.resize.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/static/js/plugins/flot/jquery.flot.resize.js -------------------------------------------------------------------------------- /vms/static/js/plugins/flot/jquery.flot.tooltip.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/static/js/plugins/flot/jquery.flot.tooltip.min.js -------------------------------------------------------------------------------- /vms/static/js/plugins/morris/morris-data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/static/js/plugins/morris/morris-data.js -------------------------------------------------------------------------------- /vms/static/js/plugins/morris/morris.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/static/js/plugins/morris/morris.js -------------------------------------------------------------------------------- /vms/static/js/plugins/morris/morris.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/static/js/plugins/morris/morris.min.js -------------------------------------------------------------------------------- /vms/static/js/plugins/morris/raphael.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/static/js/plugins/morris/raphael.min.js -------------------------------------------------------------------------------- /vms/templates/blank-page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/templates/blank-page.html -------------------------------------------------------------------------------- /vms/templates/bootstrap-elements.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/templates/bootstrap-elements.html -------------------------------------------------------------------------------- /vms/templates/bootstrap-grid.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/templates/bootstrap-grid.html -------------------------------------------------------------------------------- /vms/templates/charts.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/templates/charts.html -------------------------------------------------------------------------------- /vms/templates/forms.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/templates/forms.html -------------------------------------------------------------------------------- /vms/templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/templates/index.html -------------------------------------------------------------------------------- /vms/templates/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/templates/login.html -------------------------------------------------------------------------------- /vms/templates/profile.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/templates/profile.html -------------------------------------------------------------------------------- /vms/templates/register.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/templates/register.html -------------------------------------------------------------------------------- /vms/templates/settings.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/templates/settings.html -------------------------------------------------------------------------------- /vms/templates/site_template.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/templates/site_template.html -------------------------------------------------------------------------------- /vms/templates/tables.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihebski/hacks/HEAD/vms/templates/tables.html --------------------------------------------------------------------------------