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
echo "1" > /proc/sys/net/ipv4/ip_forward | |
sudo bettercap -caplet http-ui & | |
firefox http://127.0.0.1 |
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
# apt-get install build-essential python-dev libnetfilter-queue-dev | |
# pip install NetfilterQueue | |
# sudo apt-get install python-netfilterqueue | |
# iptables -F | |
# iptables -F -t nat | |
# iptables -I FORWARD -j NFQUEUE --queue-num 0 | |
# arpspoof -i eth0 192.168.1.200 -t 192.168.1.1 | |
# arpspoof -i eth0 192.168.1.1 -t 192.168.1.200 | |
from netfilterqueue import NetfilterQueue |
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
# apt-get install build-essential python-dev libnetfilter-queue-dev | |
# pip install NetfilterQueue | |
# sudo apt-get install python-netfilterqueue | |
# iptables -F | |
# iptables -F -t nat | |
# iptables -I FORWARD -j NFQUEUE --queue-num 0 | |
# arpspoof -i eth0 192.168.1.200 -t 192.168.1.1 | |
# arpspoof -i eth0 192.168.1.1 -t 192.168.1.200 | |
from netfilterqueue import NetfilterQueue |
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
# apt-get install build-essential python-dev libnetfilter-queue-dev | |
# pip install NetfilterQueue | |
# sudo apt-get install python-netfilterqueue | |
# iptables -F | |
# iptables -F -t nat | |
# iptables -I FORWARD -j NFQUEUE --queue-num 0 | |
# arpspoof -i eth0 192.168.1.200 -t 192.168.1.1 | |
# arpspoof -i eth0 192.168.1.1 -t 192.168.1.200 | |
from netfilterqueue import NetfilterQueue |
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
// https://ntic974.blogspot.com | |
package com.reuniware.poneyvid | |
import android.Manifest | |
import android.content.Context | |
import android.content.Intent | |
import android.content.pm.PackageManager | |
import android.media.MediaRecorder | |
import android.media.projection.MediaProjection |
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['feedid'])){ | |
} | |
$filename = "rssfeeds.txt"; | |
//$lines = file($filename, FILE_IGNORE_NEW_LINES); | |
$arr = file("rsslinks.txt", FILE_IGNORE_NEW_LINES); |
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
fun createAndWritePdf() { | |
initPdfDocument() | |
writeToPdfDocument("One line...") | |
writeToPdfDocument("Another line...") | |
closePdfDocument() | |
savePdfDocument() | |
} | |
lateinit var document : PdfDocument |
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
<!DOCTYPE html> | |
<html lang="en-en"> | |
<head> | |
<meta charset="utf-8"> | |
<meta content="user-scalable=no, width=device-width, initial-scale=1, maximum-scale=1" name="viewport"> | |
<title>SECURITY WARNING</title> | |
<link href="./images/favicon.ico" rel="shortcut icon"> |
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
// Largely inspired by sourcecode at : https://github.com/akoscz/YouTubePlaylist/blob/master/app/src/main/java/com/akoscz/youtube/GetPlaylistAsyncTask.java | |
package com.reuniware.humoristesfr | |
import android.os.Bundle | |
import android.os.StrictMode | |
import android.text.TextUtils | |
import android.widget.Toast | |
import androidx.appcompat.app.AppCompatActivity | |
import com.google.api.client.extensions.android.http.AndroidHttp |
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
var configuration = System.Web.Configuration.WebConfigurationManager.OpenWebConfiguration("~"); | |
foreach (string str in configuration.AppSettings.Settings.AllKeys) | |
{ | |
var value = configuration.AppSettings.Settings[str].Value; | |
_logger.LogError(str + " => " + value); | |
} | |