Packet Storm ATOM Feed
I was searching around Packet Storm today and wanted to add there new files as a RSS/ATOM feed on my browser. I didn’t find a link for this, so I created one in PHP. Below is the code that creates the atom.xml file.
Click Here To View
<?php
/*
* Connects to packstormsecurity.org and created a
* atom feed of the last 20 uploaded files.
*
* @requires php-curl php-tidy
* @author Tully Rankin
* @url http://www.TullyRankin.com
*/
$ch = curl_init();
$url = ‘http://www.packetstormsecurity.org/last20.html’;
$site = ‘http://www.packetstormsecurity.org’;
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_HEADER, [...]
