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
##### DEBIAN ################ | |
# Debian Experimental | |
# deb http://ftp.de.debian.org/debian experimental main contrib non-free | |
# deb-src http://ftp.de.debian.org/debian experimental main contrib | |
# Debian Sid # CURRENT UNSTABLE | |
# deb http://ftp.de.debian.org/debian sid main contrib non-free | |
# deb-src http://ftp.de.debian.org/debian sid main contrib non-free | |
# Debian 8.0 (Jessie) # CURRENT TESTING |
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
package xyz.nulldev.csg | |
import okhttp3.OkHttpClient | |
import okhttp3.Request | |
import org.jetbrains.ktor.http.HttpStatusCode | |
import org.jetbrains.ktor.netty.embeddedNettyServer | |
import org.jetbrains.ktor.response.respondRedirect | |
import org.jetbrains.ktor.response.respondText | |
import org.jetbrains.ktor.routing.get | |
import org.jetbrains.ktor.routing.routing |
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 | |
if(!isset($_GET['a'])) { | |
die('<form action="" method="get"><input type="text" name="a"/><input type="submit"/></form>'); | |
} | |
$url = "https://1fichier.com/?" . urlencode($_GET['a']) . "?auth=1&inline"; | |
stream_context_set_default(array( | |
'http' => array( | |
'method' => 'GET', | |
'header' => 'Authorization: Basic ' . '[BASE64 encoded login credentials. Format: "user:pass" (without quotes)]' |
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
#!/bin/bash | |
WORDPRESS_URL="https://wordpress.org/latest.tar.gz" | |
# GET ALL USER INPUT | |
echo "Project folder name?" | |
read PROJECT_FOLDER_NAME | |
echo "Project Source Url (eg. /home/users/name/desktop/)?" | |
read PROJECT_SOURCE_URL |