├── style.css ├── README.md ├── get_img.php ├── index.php ├── magnet_link.php └── LICENSE /style.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: powderblue; 3 | } 4 | h1 { 5 | color: blue; 6 | } 7 | p { 8 | color: red; 9 | } 10 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 1337x-scrapper 2 | A php based 1337x scrapper. For getting magnet links. Non blockable by service provider. 3 | 4 | 5 | ## Under construction. You can also Add Css by yourself. If you want any feature please comment in issue section. 6 | -------------------------------------------------------------------------------- /get_img.php: -------------------------------------------------------------------------------- 1 | array( 7 | "verify_peer"=>false, 8 | "verify_peer_name"=>false, 9 | ), 10 | ); 11 | $str = @file_get_contents($url, true, stream_context_create($arrContextOptions)); 12 | echo $str; 13 | } 14 | ?> 15 | -------------------------------------------------------------------------------- /index.php: -------------------------------------------------------------------------------- 1 | 10 | 11 |
12 |