set up colluders

This commit is contained in:
eyedeekay
2024-06-02 22:57:34 -04:00
parent e77163b4b1
commit 6da371b0c1
2 changed files with 19 additions and 0 deletions

View File

@ -2,3 +2,16 @@
- [Proposal](PROP166.md)
- [Test Matrix](TESTING.md)
## Attackers
- [Colluding Attacker](http://qb3iwbawdea4au4v2jhaf6q56ry72a7rsyw6fbdqify5yldo6gma.b32.i2p)
- [Colluding Attacker](http://5cnfre67awdozmezosps24c73j3r4epyk7mlxwgij2gh7jjn3yla.b32.i2p)
- [Colluding Attacker](http://5nwbbv2o4mnpgokxqqfw3qjaf7vg5pn6zgo2l3vscypjtdpr7cgq.b32.i2p)
- [Colluding Attacker](http://4yevren2fww3sa7wseficwg33472agxzmaw273tlii6eaqqvhqha.b32.i2p)
- [Colluding Attacker](http://dsuqbajuqnbhgbaionrsqpvarvadrlh6x2y5cxn7humku5cdt55q.b32.i2p)
- [Colluding Attacker](http://vcvm3i35yytotnik6hdo4ku2qo5dkmv4r3h7hqdmj3hsdfhocvia.b32.i2p)
- [Colluding Attacker](http://a345wdajqymeznx44kh7k2p43vive5blkdz3ltrqhsq6yz5by7xa.b32.i2p)
- [Colluding Attacker](http://v5bsl5zfoeujwewyef3cebpenxyhne6ujn3hrl3k566jdvvka5lq.b32.i2p)
- [Colluding Attacker](http://lhx4sdnutnckls3yd2okaktp3quuguyoozwji4g6jz3stxlaubla.b32.i2p)
- [Colluding Attacker](http://6eubvcqanekjyog3smyoeurk5gmzshjdqhfsbiohn2pbcj2naeqa.b32.i2p)

View File

@ -32,6 +32,12 @@ func main() {
}
go func() {
log.Println("Accepted connection on: \n\t", listener.Addr().String(), "\nAccepted From: \n\t", conn.RemoteAddr().String())
file, err := os.OpenFile(listener.Addr().String(), os.O_RDWR, 0644)
if err != nil {
log.Print(err)
}
file.Write([]byte(conn.RemoteAddr().String()+"\n"))
file.Close()
handleRequest(conn)
}()
}