Enter this in the search box along with your search terms:
Get all gists from the user santisbon.
user:santisbon
Find all gists with a .yml extension.
extension:yml
Find all gists with HTML files.
language:html
| https://github.com/search?q=BROWSER_STACK_ACCESS_KEY= OR BROWSER_STACK_USERNAME= OR browserConnectionEnabled= OR BROWSERSTACK_ACCESS_KEY=&s=indexed&type=Code | |
| https://github.com/search?q=CHROME_CLIENT_SECRET= OR CHROME_EXTENSION_ID= OR CHROME_REFRESH_TOKEN= OR CI_DEPLOY_PASSWORD= OR CI_DEPLOY_USER=&s=indexed&type=Code | |
| https://github.com/search?q=CLOUDAMQP_URL= OR CLOUDANT_APPLIANCE_DATABASE= OR CLOUDANT_ARCHIVED_DATABASE= OR CLOUDANT_AUDITED_DATABASE=&s=indexed&type=Code | |
| https://github.com/search?q=CLOUDANT_ORDER_DATABASE= OR CLOUDANT_PARSED_DATABASE= OR CLOUDANT_PASSWORD= OR CLOUDANT_PROCESSED_DATABASE=&s=indexed&type=Code | |
| https://github.com/search?q=CONTENTFUL_PHP_MANAGEMENT_TEST_TOKEN= OR CONTENTFUL_TEST_ORG_CMA_TOKEN= OR CONTENTFUL_V2_ACCESS_TOKEN=&s=indexed&type=Code | |
| https://github.com/search?q=-DSELION_BROWSER_RUN_HEADLESS= OR -DSELION_DOWNLOAD_DEPENDENCIES= OR -DSELION_SELENIUM_RUN_LOCALLY=&s=indexed&type=Code | |
| https://github.com/search?q=ELASTICSEARCH_PASSWORD= OR ELASTICSEARCH_USERNAME= OR EMAIL_NOTIFI |
| #!/usr/bin/env python | |
| # findPwnedDB.py | |
| # | |
| # Last update: 1/13/2020 | |
| # | |
| # Added: | |
| # CassandraDB support | |
| # Additional DBs | |
| # Docker XMR mining flags (Thanks Unit42!) | |
| # https://unit42.paloaltonetworks.com/graboid-first-ever-cryptojacking-worm-found-in-images-on-docker-hub/ |
Enter this in the search box along with your search terms:
Get all gists from the user santisbon.
user:santisbon
Find all gists with a .yml extension.
extension:yml
Find all gists with HTML files.
language:html
| The android/meterpreter/reverse_tcp payload is a Java-based Meterpreter that can be used on an | |
| Android device. It is still at an early stage of development, but there are so many things you can | |
| do with it already. | |
| The Android Meterpreter allows you to do things like take remote control the file system, listen to phone calls, retrieve or send SMS messages, geo-locate the user, run post-exploitation modules, etc. | |
| ## Vulnerable Application | |
| You can test android/meterpreter/reverse_tcp on these devices: |
Допустим, программа состоит из последовательных инструкций. Каждая инструкция — это определение функции или вызов функции. Тогда структура AST может быть такой:
Program (struct)
-> std::vector statements
[Environment variables][7] are a set of dynamic named values that can affect the way running processes will behave on a computer. The variables can be used both in scripts and on the command line. Environment variables makes it easy when certain standard directories and parameters need to be referenced but where the actual locations or names can vary from computer to computer.
This tutorial will show you a complete list of environment variables that can be used to reference standard directories and parameters in Windows 10.
I assume that you already created C++ Win32 project where you want to include SQLite.
amalgamation source version of SQLite.Developer Command Prompt for VS **** which is usually available at Start -> Programs -> Visual Studio **** -> Visual Studio Tools.cl /c /EHsc sqlite3.clib sqlite3.objsqlite3.lib to Linker -> Input -> Additional Dependencies.| ## https://dev.to/nishina555/how-to-ignore-files-already-managed-with-git-locally-19oo | |
| ## как игнорировать изменения уже отслеживаемого файла/папки | |
| # если нужно менять локально и не отправлять затем в основную ветку | |
| git update-index --skip-worktree путь/к/файлу/файл | |
| # обратная операция | |
| git update-index --no-skip-worktree путь/к/файлу/файл | |
| # если не нужно менять локальные файлы (при подтягивании изменений из основной ветки) | |
| git update-index --assume-unchanged путь/к/файлу/файл | |
| # обратная операция | |
| git update-index --no-assume-unchanged путь/к/файлу/файл |