Friday, May 30, 2008
Saturday, April 19, 2008
New Dargens Screen Shots
| |
|
| ||||||
|
| ||||||
| ||||||
| ||||||
Posted by
Ezzye
at
2:38 PM
Labels: anonymous, Anonymous P2P, Ants p2p, Friend to friend network, friend-to-friend, p2p
Saturday, January 19, 2008
New Version of Dargens -Better Web Gui
Posted by
Ezzye
at
9:52 AM
Labels: Anonymous P2P, ANts, Ants p2p, audio galaxy, audiogalaxy, Dargens, NAT hole punching, p2p, ruby on rails, STUNT, zeropaid
Monday, December 31, 2007
How to Use Dargens Music Downloads
Posted by
Ezzye
at
10:17 AM
Labels: anonimity, Anonymous P2P, ANts, Ants p2p, ezzy elliott, F2F, Filesharing, p2p, ruby on rails, STUNT
Saturday, December 08, 2007
New Version of Dargens with Fast Web P2P Downloading
Posted by
Ezzye
at
9:41 AM
Labels: Anonymous P2P, Ants p2p, audio galaxy, audiogalaxy, Dargens, darknet, F2F, file sharing, Filesharing, hornet, kerjodando, London Ruby User Group, p2p, p2p development, ruby on rails, Social Network
Saturday, October 27, 2007
New Update - Darknet Functions Improved
Posted by
Ezzye
at
10:47 AM
Labels: Ad-hoc, Anonymous P2P, ANts, Ants p2p, audiogalaxy, Autonomous, Cazenove Road, p2p, p2p development, torrent, web 2.0, zeropaid
Saturday, October 06, 2007
Test Anonymous Network for New Unsigned bands
New URL www.Dargens.com
Now has STUNT working firewall tunnelling and Upnp.
Sorry still only windows - working on mac and Linux compatibility.
Need folks to help testing.
A long way from finishing but making good steady progress.
Developer will be working full time from 8th October 2007.
Also, issue that JRE 1.60_02 and JRE 1.60_3 only work when jar is first downloaded.
JRE 1.60_01 and previous JRE versions work perfectly.
Posted by
Ezzye
at
2:12 PM
Labels: anonimity, Anonymous P2P, Ants p2p, audio galaxy, Dargens, ezzy elliott, F2F, file sharing, friend-to-friend, java, kerjodando, London, NAT hole punching, p2p, STUNT, TCP NAT Traversal, web 2.0
Monday, September 24, 2007
Social Network P2P Filesharing

Please email me ( ezzy.elliott@gmail.com ) it you can help test the new firewall hole punching features of itsDargens social network p2p filesharing.
Posted by
Ezzye
at
9:19 AM
Labels: Anonymous P2P, Filesharing, p2p, Social Network, TCP NAT Traversal
Tuesday, August 21, 2007
Michel Bauwens Anonymous P2P Peer Production
I found this very interesting.
In the end users will make their own networks (friend to friend). These networks will be private and free.
Posted by
Ezzye
at
11:40 AM
Labels: Anonymous P2P, ANts, Ants p2p, audio galaxy, ezzy elliott, F2F, friend-to-friend, Michel Bauwens, p2p, Peer Production, ruby on rails, web 2.0
Monday, August 13, 2007
Audio Galaxy

1. Testing has stopped on TCP NAT traversal due to Casper having to move City. Looking to re-start soon. A real pity as we were very close to completing project. C'est la vie - Suppose there is more to life than hacking code.
2. Web Gui to have three parts:
- Search form (done)
- Search results page and link to queue item for download (partly done)
- Download queue page with progress indicator and link to open downloaded file
3. The completed kerjodando p2p will closely resemble the old Audiogalaxy website:
- Web based interface
- Queue files for later delivery and
- Full parsing of mp3 meta data.
Posted by
Ezzye
at
2:06 PM
Labels: anonymous, Anonymous P2P, Ants p2p, audio galaxy, audiogalaxy, F2F, file sharing, friend-to-friend, p2p, ruby on rails, social networking, TCP NAT Traversal, web 2.0
Monday, August 06, 2007
TCP NAT Traversal Testing for Anonymous File Sharing

Firewall hole punching implemented.
Now testing step by step.
So sometimes the test group http://www.itsdargens.com/swarm/show_one/86d1cca8104f981648eb1b1d0f0f3a39
might produce unexpected results.
Please try it we need more testers.
Posted by
Ezzye
at
9:26 PM
Labels: 443, anonymous, Anonymous P2P, ANts, Ants p2p, bootstrap, ezzy elliott, F2F, file sharing, friend-to-friend, NAT, NAT hole punching, p2p, p2p development, TCP NAT Traversal, web 2.0
Monday, July 30, 2007
STUNT P2P TCP NAT Traversal on a Ad-hoc Overlay Network

I've been thinking about this TCP NAT Traversal (TCP hole punching a method that allows everyone to connect quickly without port forwarding).
I think the following changes are needed to kerjodando to make it work.
- Trusted Peers list (and itsDargens User database table) need to include two extra hidden fields, User ID (prob already in itsDargens database) and "use STUNT" flag. For example, if 100 users on a LAN connect to one group they will all have different user IDs although they have the same ip+port. Then when a user wants to connect to another user (after trying direct connection) they connect to STUNT using their user ID and signal (using SIPS) to another users ID. STUNT then tell them what ip+port to use to connect to that user ID. Also STUNT would set the "use STUNT flag" to yes.
- ItsDargens user database to change to include "use STUNT" flag
- Trusted peer file needs to download and use the included user IDs and "use STUNT" flag as well as ip+port.
However, once they have connected to all their trusted peers they can disconnect form the STUNT server.
Also, probably there will be some users that you can't connect to even with STUNT, maybe these should be marked as such in "use STUNT" flag and counted as connected when deciding if should disconnect form STUNT server.
To me a STUNT server consists of the following processes:
- Maintaing TCP user connections with many users (User IDs)
- Recording user (user ID) ip+port for at least two test connections from the user
- Calculating predicted ip+port for a user (User ID)
- Reply to a request to connect to a User ID with predicted ip+port
- Telling other User to also make a request etc
- Recording "STUNT flag" in user database table so that it can be included in downloaded trusted peers
- Recording if STUNT does not work
More About STUNT:
Found STUNT ( Simple Traversal of UDP Through NATs and TCP too) library in java:
http://nutss.gforge.cis
What does the
stunt.jar library provide?It provides a way to establish unproxied TCP connections between two end-points, both of which can be behind a NAT. It returns a
SocketChannel that can be used for blocking or non-blocking IO as the application desires.How does one write a server-client or peer-to-peer applications with the library?
We have provided a simple server-client application consisting of an EchoServer ( http://nutss.gforge.cis
Does the library require some infrastructure?
Yes. The library requires a rendezvous server (much like a directory server) where applications with one URI can find the application with another URI and coordinate to establish a connection. The library also requires some STUNT servers that help applications find out their external IP address and port for establishing the real connection.
Does the rendezvous server proxy data?
No. The rendezvous server only helps set up the connection. After that, all data is exchanged directly between the end-points and does not go through the rendezvous server.
Who provides the rendezvous and STUNT service? Who can use them?
We at Cornell University are providing a rendezvous and STUNT service for developers and researchers to use. However, if you wish to deploy your own application that uses the library, we ask that you set up rendezvous and STUNT servers only for your own applications such that you do not overburden the Cornell service (which is for research and development purposes) and so that outages and changes in the Cornell service doesn't affect your application. The rendezvous server ( https://gforge.cis.cornell.edu
Is this library under active development? Will you implement feature X?
The library is a proof of concept that TCP NAT Traversal is possible and is intended to be a starting-poing for application developers who want to use it in a real-world deployable project. At the same time, it is a library that can be used more-or-less unmodified for research and quicky-development and prototyping of applications. Time permitting, I would like to implement various features that are requested; but I cannot promise that all features will be implemented in a timely fashion. I will do my best to make the library more suited to its primary goal -- show how the NAT TCP problem can be solved easily by applications.
I want to implement TCP NAT traversal in my application but don't want to use your library?
The TCP NAT traversal code is contained in the file STUNTCont.java ( https://gforge.cis.cornell.edu
Also see http://en.wikipedia.org/wiki
Aslo see:
see STUNT
http://nutss.gforge.cis
and
http://www1.ietf.org/mail
and
http://en.wikipedia.org/wiki
and
http://reports-archive.adm.cs
and
http://emu.freenetproject.org
Posted by
Ezzye
at
8:34 AM
Labels: 443, Ad-hoc, Anonymous P2P, ANts, Ants p2p, Dargens, ezzy elliott, F2F, friend-to-friend, java, Overlay Network, p2p, ruby on rails, STUNT, TCP, TCP NAT Traversal
Saturday, July 21, 2007
kerjodando p2p - Your Own Private Internet

Hi
Now testing kerjodando p2p, your own private internet.
Search, download, enjoy.
- Goto test page here http://www.itsdargens.com/swarm/show_one/86d1cca8104f981648eb1b1d0f0f3a39
- Click START to open torrent file to download and install kerjodando p2p client
- Click RUN to accept kerjodando digital signature.
- When kerjodando opens wait for connection (3 minutes)
- Search
- Download by right-clicking on file and selecting download
Thanks
Posted by
Ezzye
at
1:55 PM
Labels: anonimity, anonymous, ANts, Ants p2p, F2F, file sharing, friend-to-friend, p2p, p2p development, social networking, web 2.0
Monday, July 16, 2007
Firewall Tunnelling and Quicker User Connection

Tne next project is ensure that users connect quickly and easily to kerjodando. It has two parts:
1. Ensure that users connect quickly and easily to trusted peers ONLY (except for users using Upnp to connect to other LAN users)
Currently "Ants" has several methods of connecting these need to be removed leaving only trusted peers and Upnp.
There might be more than this but here are the methods I know:
- irc - REMOVED
- gwebcache - REMOVED
- peers - previous connections - LEAVE
- random walk across the network from peer to peer recording peers with free slots - TO BE REMOVED
- manual connect in advance tab - LEAVE
- trusted peers - IMPROVE SO THAT IT KEEPS TRYING UNTIL CONNECTION MADE WITHOUT ANY BANDWIDTH TESTING
- Upnp - LEAVE
2. Using the itsDargens website as an intermediary develop a simple process to allow two peers with un-forwarded ports to connect.
I must admit that I don't fully understand the TCP/IP protocol but I would prefer if the solution involved a client connecting to website and then the website updating the trusted peers file to reflect the external port that was used. (This could be total rubbish on my part) The solution must be SIMPLE.
This is important as with fewer users in each group quick connection is very important and there is a high probability that both users may not have kerj ports forwarded.
Both jobs are urgent as the point of the application is to CONNECT and DOWNLOAD and currently about 50% of users can't connect!
The full list of things added and removed are:
Needed:
Own folder, separate from Ants - JAVA - OUTSTANDING
Client minimize to systems tray on opening - JAVA- OUTSTANDING
try to connect to trusted peers - JAVA- OUTSTANDING
itsdargens itermediate connection help where two users behind a firewall - RAILS - OUTSTANDING
ipfilter.dat - RAILS - OUTSTANDING
irc applet to website - RAILS- OUTSTANDING
email invite from google and IM on website - RAILS - OUTSTANDING
Not Needed:
Help page not needed as it is no help! - JAVA - DONE
Browser location setting no longer needed - JAVA - DONE
Monitor clip board for ed2k and ants links - JAVA - DONE
Random walk for new peers with free slots (must use trusted peers) - JAVA - OUTSTANDING
irc - JAVA - DONE
http tunnel - JAVA - DONE
ed2k hashes - JAVA - DONE
publish ip on gwebcache - JAVA - DONE
any restriction on peers connected to e.g. bandwidth - JAVA - OUTSTANDING
Posted by
Ezzye
at
10:39 AM
Labels: 443, anonymous, Anonymous P2P, ANts, Ants p2p, connecting, friend-to-friend, kerjodando, p2p, p2p development, social networking, Web proxy avoidance
Tuesday, July 10, 2007
kerjodando Cutting it Back to the Core

2007-6-26 remove skin
SettingsAntPanel.java, jLabel18 and jComboBox4 removed.Four setLookAndFeel() have been modified. LookAndFeel were set to getCrossPlatformLookAndFeelClassName()
remove Trendy,Napkin,Liquid related jars
2007-7-9 http tunnel
HttpAntPanel class was totally removed, and other places where HttpAntPanel is used are also modified
HttpAntPanel.java modified, leaving only one static attribute 07-07-08
HttpPopupMenu.java removed. This popuo menu is only use in http tunnel tab
2007-7-9 ed2k hash
shared file no need to calculate its hashvalue
BackgroundEngine.java, leave sharedFilesIndexED2KHash as an empty object,DonkeyHashFile object removed
DonkeyHashFile.java removed
removed ants.p2p.utils.donkey.*, including Convert.java,DonkeyHashFile.java,DonkeyPacketConstant.java,MD4.java
In SharePopupMenu.java,jMenuItem2 was removed, generating a ed2k link is removed
FileInfos.java, calculating the ed2k hash of a file is replace with an empty string
2007-7-10 GWebCache
SettingsAntPanel.java: removed jCheckBox8 and jCheckBox9 and all concerning GWebCache
ConnectionManager.java: lastGWebCacheUpdate,lastGWebCacheFetch,publishIpOnGWebCache,searchIpOnGWebCache all removed
delete com.limegroup
2007-7-10 IRC bots
ConnectionManager.java, irc concerning things removed,org.jibble.pircbot.* not need again
SettingAntsPanel.java, a panel concerning IRC is removed
ConnectionAntPanel.jave,this.container.sap.* concerning IRC is removed,IrcBot related things removed
ICRbot.java deleted
ChatAntPanel.java deleted
ChatPopMenu.java deleted
UsersComparator.java deleted
SettingAntsPanel.java, checking if it is null before updating its look and feel
2007-7-10 Not monitor ed2k: link in clipboard
QueryLinkDaemon.java set ed2kFound=false;SettingAntsPanel.jCheckBox7.tooltips changed
Posted by
Ezzye
at
1:06 PM
Labels: Anonymous P2P, ANts, Ants p2p, friend-to-friend, kerjodando, p2p, p2p development, social networking, web 2.0
Monday, July 02, 2007
You Can Use Any Port on ANts p2p version 2 (kerjodando)

The development team has just added a new option to use any port to connect to Ants p2p (kerjodando) YUM YUM!
See http://www.itsdargens.com/swarm/show_one/86d1cca8104f981648eb1b1d0f0f3a39
If you don't put a port then 443 is used.
443 is still the recommended port as it allows people behind firewalls to connect easily.
Please try it we need some feedback.
Posted by
Ezzye
at
12:38 PM
Labels: 443, anonymous, Anonymous P2P, ANts, Ants p2p, British Red Cross, Dargens, ezzy elliott, F2F, file sharing, friend-to-friend, p2p, p2p development, Port, small world, social networking, web 2.0
Monday, June 25, 2007
Connecting to a P2P Network - ANts p2p and ANts p2p version 2 (kerjodando)
| Port Needed to Connect to Ants p2p and Ants p2p version 2 (kerjodando) | ||||
| Your Enviroment | Can You Connect? | |||
| Your Port | Port on Firewall Open? | Port forwarded? | YOU can connect TO OTHERS | OTHERS can connect TO YOU |
| 443 | Yes* | Yes | Yes | Yes |
| 443 | Yes* | No | Yes | Once you have connected to first user then others can connect to you. |
| Other Port | Yes | Yes | Yes | Once you have connected to first user then others can connect to you. |
| Other Port | Yes | No | Yes | Once you have connected to first user then others can connect to you. |
| Other Port | No | No | No | No |
| *This port is always open in firewalls; | ||||
Posted by
Ezzye
at
8:52 AM
Labels: 443, anonymous, Anonymous P2P, ANts, Ants p2p, connecting, ezzy elliott, F2F, kerjodando, p2p, p2p development, Port, web 2.0, Websense bypass
Saturday, June 23, 2007
Feedback From Testing

Good:
Downloads fast
Uploads Fast
Loads of Content
Bad:
Lots of new users could not connect
Connection is the most important part of p2p. Once web gui is done and application made much small so quicker to download the next big priority is connection.
Currently you should have no probs if use port 443 and make sure that this is forwarded.
If you use another port (even if forwarded) then no one will be able to connect to you. You can only connect to others.
If you are behind a firewall or proxy and don't use 443 then you will not be able to connect.
So use port 443, make sure it is forwarded.
Use the proxy option if you're behind a corporate or university proxy like websence.
Tell you friends about it. Then you can make sure that you have someone to connect with and share with.
Posted by
Ezzye
at
3:24 PM
Labels: anonymous, Anonymous P2P, ANts, Ants p2p, beta tester, Dargens, ezzy elliott, F2F, file sharing, friend-to-friend, java, kerjodando, p2p, web 2.0, Websense bypass
Wednesday, June 20, 2007
Smaller P2P - New Project Member Casper

The project now has a new team member, Casper.
He has been tasked to reduce the size and complexity of the kerjodando client.
He is starting work immediately.
His first task is make sure the admin of the project, svn etc is professional.
Posted by
Ezzye
at
10:27 AM
Labels: Anonymous P2P, ANts, Ants p2p, ezzy elliott, F2F, kerjodando, p2p
Sunday, June 17, 2007
kerjodando p2p updated with latest ANts p2p Code

I have updated kerjodando with the latest ANts p2p source code from Gwren. (see www.itsDargens.com)
For the next few weeks (months) while we are testing the meetups (private groups) have been switched off to make it easier to test.
The next update will be an example of the webgui showing searching.
Hopefully this will be tomorrow.
Posted by
Ezzye
at
9:31 PM
Labels: anonimity, anonymous, Anonymous P2P, ANts, Ants p2p, Dargens, ezzy elliott, F2F, file sharing, friend-to-friend, java, p2p, research, ruby on rails, web 2.0

http://www.dargens.com