Preview
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ffuf -u http://hackfail.htb/ -H "Host: FUZZ.hackfail.htb" -w "$(wl)" -timeout 100 -t 1 -fs 10676 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "SynthWave 84", | |
| "background": "#262335", | |
| "foreground": "#ffffff", | |
| "white": "#ffffff", | |
| "brightWhite": "#ffffff", | |
| "black": "#000000", | |
| "brightBlack": "#888888", | |
| "blue": "#03edf9", | |
| "brightBlue": "#03edf9", |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php session_start(); | |
| $password = "under"; // sifre(degistirebilirsiniz) | |
| $pass = $_POST['pass']; | |
| $form = "<form method='POST'> | |
| <input type='password' name='pass'><input type='submit' value='Login !'> | |
| </form>"; | |
| if( !isset($_SESSION['sec']) ){ $_SESSION['sec'] = false; | |
| } if(isset($pass)) { if($pass == $password) { $_SESSION['sec'] = true; | |
| } else { die( "{$form} <br> <H1>Error"); | |
| } } if(!$_SESSION['sec']): echo $form; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "background" : "#282828", | |
| "black" : "#282828", | |
| "blue" : "#458588", | |
| "brightBlack" : "#928374", | |
| "brightBlue" : "#83A598", | |
| "brightCyan" : "#8EC07C", | |
| "brightGreen" : "#B8BB26", | |
| "brightPurple" : "#D3869B", | |
| "brightRed" : "#FB4934", |
Create the file /data/data/com.instagram.android/shared_prefs/devprefs.xml and add the following content. (You will need root access to modify it)
<?xml version='1.0' encoding='utf-8' standalone='yes' ?>
<map>
<string name="debug_allow_user_certs_ttl">1557909551442:86400000</string>
<boolean name="debug_allow_user_certs" value="true" />
<boolean name="debug_disable_liger_fizz" value="true" />
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| .tabs-container { | |
| padding-left: 22px; | |
| } | |
| .tabs-container > .tab { | |
| transform: skewX(25deg); | |
| border-radius: 5px 5px 0 0; | |
| height: 28px; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| http://www.youtube.com | |
| http://www.facebook.com | |
| http://www.baidu.com | |
| http://www.yahoo.com | |
| http://www.amazon.com | |
| http://www.wikipedia.org | |
| http://www.qq.com | |
| http://www.google.co.in | |
| http://www.twitter.com | |
| http://www.live.com |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # -*- coding:utf-8 -*- | |
| #------------------------------------------ | |
| # Autor: Samuel T. C. Santos | |
| # Data: 07/05/2014 | |
| # python version-2.x | |
| #------------------------------------------ | |
| distancia = raw_input("Distancia [km]? ") | |
| tempo = raw_input("Tempo [hr]? ") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #include <stdio.h> | |
| #include <stdlib.h> | |
| #include <ctype.h> | |
| #include <math.h> | |
| #define CHECKMALLOC(var) if((var) == NULL) {printf("ERROR: malloc\n");abort();} | |
| #define MAXOPSTACK 64 | |
| #define MAXNUMSTACK 64 |
NewerOlder
