Skip to content

Instantly share code, notes, and snippets.

View IgorSasovets's full-sized avatar

IgorSasovets

View GitHub Profile
@IgorSasovets
IgorSasovets / database.rules.json
Created September 20, 2021 07:39 — forked from codediodeio/database.rules.json
Common Database Rules for Firebase
// No Security
{
"rules": {
".read": true,
".write": true
}
}
@IgorSasovets
IgorSasovets / AdbCommands
Created April 27, 2021 15:27 — forked from Pulimet/AdbCommands
Adb useful commands list
adb help // List all comands
== Adb Server
adb kill-server
adb start-server
== Adb Reboot
adb reboot
adb reboot recovery
adb reboot-bootloader
@IgorSasovets
IgorSasovets / SetFileList.html
Created April 3, 2020 13:12 — forked from guest271314/SetFileList.html
Set the FileList of <input type="file"> to arbitrary File objects
<!DOCTYPE html>
<!-- guest271314 11-12-2017 -->
<!-- see https://stackoverflow.com/questions/47119426 -->
<html>
<head>
</head>
<body>
<script>
@IgorSasovets
IgorSasovets / image-arraybuffer.js
Created April 3, 2020 13:03 — forked from candycode/image-arraybuffer.js
Create a jpg image from ArrayBuffer data
// Simulate a call to Dropbox or other service that can
// return an image as an ArrayBuffer.
var xhr = new XMLHttpRequest();
// Use JSFiddle logo as a sample image to avoid complicating
// this example with cross-domain issues.
xhr.open( "GET", "http://fiddle.jshell.net/img/logo.png", true );
// Ask for the result as an ArrayBuffer.
xhr.responseType = "arraybuffer";
@IgorSasovets
IgorSasovets / burpsettings.json
Created November 8, 2019 11:08 — forked from jgamblin/burpsettings.json
Burp Settings JSON
{
"project_options":{
"connections":{
"hostname_resolution":[],
"out_of_scope_requests":{
"drop_all_out_of_scope":false,
"exclude":[
{
"enabled":true,
"file":"logout",