Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- //By: Jeffrey_Hatrix, Willian_Luigi
- <?php
- socket("127.0.0.1", 7777, "Bytes a enviar");
- function socket($ip_vis, $port, $pack) {
- $socket;
- if (!ereg($ip_vis, $ip_sv)) {
- if ($socket = socket_create(AF_INET, SOCK_STREAM, 0)) {
- if (socket_connect($socket, $ip_vis, $port)) {
- socket_write($socket, $pack, strlen($pack));
- return true;
- }
- }
- }
- }
- ?>
Advertisement
Add Comment
Please, Sign In to add comment