PHP Classes

File: api/library/PHPMailer-master/test/runfakepopserver.sh

Recommend this page to a friend!
  Classes of adriano123456   API Voucher PHP School Management System   api/library/PHPMailer-master/test/runfakepopserver.sh   Download  
File: api/library/PHPMailer-master/test/runfakepopserver.sh
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: API Voucher PHP School Management System
Manage school activities, courses and students
Author: By
Last change:
Date: 1 year ago
Size: 361 bytes
 

Contents

Class file image Download
#!/usr/bin/env bash # Run the fake pop server from bash # Idea from http://blog.ale-re.net/2007/09/ipersimple-remote-shell-with-netcat.html # Defaults to port 1100 so it can be run by unpriv users and not clash with a real server # Optionally, pass in in a port number as the first arg mkfifo fifo nc -l ${1:-1100} <fifo |bash ./fakepopserver.sh >fifo rm fifo