Author

Topic: Evil score visualization (Read 2893 times)

member
Activity: 68
Merit: 10
November 20, 2017, 05:30:36 AM
#30
This is truly awesome. I really love it!! But I don't like IP banning... IP's are just not personal enough... Especially with dynamic IP's with internet providers...
I like things as Login Through Google to identify unique persons. But obviously there can be more than one Google account for each person...
newbie
Activity: 33
Merit: 0
November 20, 2017, 05:15:54 AM
#29
how to remove it ? cause fee is very small, hard to make a transaction
legendary
Activity: 2058
Merit: 1452
December 06, 2015, 05:11:32 PM
#28
If anyone's interested I made a program that mapped each pixel to an ASN, and counted how many evils each ASN has. It's available as a CSV file. The first column is the ASN, the other columns are the number of pixels for that particular color. The (n+1)th column correspond to nth color listed by theymos. (ie. the second column corresponds to the number of black pixels and the 8th column corresponds to the number of pink pixels for a particular ASN).

edit:
forgot to mention that in some cases, a pixel (/24 subnet) correspond to multiple ASNs, or that an ASN is only responsible for part of a /24. In those cases, the color count is incremented proportionally to the size of the subnet they control. So if a ASN controls 10.0.0.0/26, and the corresponding pixel color is white, then the 3rd column (the column for white) for that ASN will be incremented by 0.25, since a /26 subnet is quarter of the size of a /24.
legendary
Activity: 1666
Merit: 1185
dogiecoin.com
November 30, 2015, 11:07:40 AM
#27
For reference, I got pretty close to outputting results but couldn't find a way to reverse the 12th order Hilbert curve in excel. There is some code to do it here but I'm unsure how to get that usable.
vip
Activity: 1428
Merit: 1145
October 25, 2015, 01:53:21 AM
#26
Quick aside: NERDS!  Grin
legendary
Activity: 1666
Merit: 1185
dogiecoin.com
October 25, 2015, 01:22:48 AM
#25
Doesn't particularly help me as I don't have any way to automate the process after that. I have to start with words and turn words into other things as nothing I know interacts with non words.

dogie, for a rough solution you could use ImageMagick's convert to read the pixel value for each pixel:
http://apple.stackexchange.com/questions/26719/any-tool-to-tell-me-the-exact-color-value-at-a-point-on-a-png-image

the relevant part:

Quote
$ convert image.png -crop '1x1+100+200' txt:-

Outputs, e.g.

# ImageMagick pixel enumeration: 1,1,255,rgb
0,0: (236,236,236)  #ECECEC  rgb(236,236,236)

then you need to correlate the output with IP based on the mapping specified here before.

This is a pretty ugly way to do it, but it should require minimal coding, so for a one-off, it's how I'd do it.

Nice, worked perfectly. If I get bored I'll see what I can do with this although at this point I'm not actually sure Tongue
legendary
Activity: 1615
Merit: 1000
October 23, 2015, 04:14:41 PM
#24
Doesn't particularly help me as I don't have any way to automate the process after that. I have to start with words and turn words into other things as nothing I know interacts with non words.

dogie, for a rough solution you could use ImageMagick's convert to read the pixel value for each pixel:
http://apple.stackexchange.com/questions/26719/any-tool-to-tell-me-the-exact-color-value-at-a-point-on-a-png-image

the relevant part:

Quote
$ convert image.png -crop '1x1+100+200' txt:-

Outputs, e.g.

# ImageMagick pixel enumeration: 1,1,255,rgb
0,0: (236,236,236)  #ECECEC  rgb(236,236,236)

then you need to correlate the output with IP based on the mapping specified here before.

This is a pretty ugly way to do it, but it should require minimal coding, so for a one-off, it's how I'd do it.
legendary
Activity: 3542
Merit: 1352
Cashback 15%
October 21, 2015, 10:40:10 PM
#23
And what if the account is banned for lets say 30-60 days [or it doesnt say].
What happends there?


the IP of the banned account will get some evil units and you'll have to wait until the account gets unbanned to post. so to answer your previous question, you can't get unbanned by paying. you only have to pay to enable posting with a new account that was registered with an IP that was blacklisted by this forum.

I think it is not IP-related anymore when it comes to bans but rather the account itself is banned. A ban without duration could be a permaban and CAN only be removed by posting an appeal here on Meta about the ban and the mods will decide whether the ban should be lifted or not.
copper member
Activity: 924
Merit: 1007
hee-ho.
October 21, 2015, 09:30:02 PM
#22
And what if the account is banned for lets say 30-60 days [or it doesnt say].
What happends there?


the IP of the banned account will get some evil units and you'll have to wait until the account gets unbanned to post. so to answer your previous question, you can't get unbanned by paying. you only have to pay to enable posting with a new account that was registered with an IP that was blacklisted by this forum.
member
Activity: 84
Merit: 10
follow me to make money
October 21, 2015, 09:08:46 PM
#21
So if you get permbanned you have to pay ? Or can you ie pay to have ban killed sooner than given date?
If an IP has someone banned on it then for someone else to register via the same IP they have to pay a bit. Its an alternative to outright IP bans.

And what if the account is banned for lets say 30-60 days [or it doesnt say].
What happends there?

1 of my members wrote me hes banned but he doesnt know for how long
legendary
Activity: 1666
Merit: 1185
dogiecoin.com
October 21, 2015, 07:55:12 PM
#20
So if you get permbanned you have to pay ? Or can you ie pay to have ban killed sooner than given date?
If an IP has someone banned on it then for someone else to register via the same IP they have to pay a bit. Its an alternative to outright IP bans.
member
Activity: 84
Merit: 10
follow me to make money
October 21, 2015, 07:26:17 PM
#19
So if you get permbanned you have to pay ? Or can you ie pay to have ban killed sooner than given date?
legendary
Activity: 1666
Merit: 1185
dogiecoin.com
October 21, 2015, 07:21:06 PM
#18
having a hard time understanding this.
so the top left would be xx.0.0.0 and xx.255.255.255 for the top right pixel, and xx.170.130.179 for the blue dot near the bottom right... am I correct?

The numbers are right, but it's 0.0.0.x, 255.255.255.x, and 170.130.179.x.

got it. thanks.

@dogie
splitting the image to 256 16x16 pics can make things a lot easier. though I'm not sure how to do it afterwards in a simple way.

Doesn't particularly help me as I don't have any way to automate the process after that. I have to start with words and turn words into other things as nothing I know interacts with non words.
legendary
Activity: 1512
Merit: 1012
October 21, 2015, 04:22:31 PM
#17
Nice map, pretty interesting data Smiley A must have for forum users that are number and statistics freaks, I guess Cheesy
legendary
Activity: 1302
Merit: 1025
October 21, 2015, 12:19:15 PM
#16
any chance to get this on a world map?

This will be a lot more easier to understand if it will be on the world map. The pixels looks like a bunch of shining stars to me. LOL. Great idea tho, I once encountered to pay a fee when I used a vpn before. So this is why..
legendary
Activity: 3542
Merit: 1352
Cashback 15%
October 21, 2015, 12:02:32 PM
#15
At first I thought I was looking at a massive void in space lol.

any chance to get this on a world map?

A great idea, though I wonder how it can be done with such a massive number of IP addresses available. When I first registered an account, I have had to pay a mere 8752 satoshi. I guess my IP back then contains some units of evil more than the blue green threshold.
copper member
Activity: 924
Merit: 1007
hee-ho.
October 21, 2015, 11:30:42 AM
#14
having a hard time understanding this.
so the top left would be xx.0.0.0 and xx.255.255.255 for the top right pixel, and xx.170.130.179 for the blue dot near the bottom right... am I correct?

The numbers are right, but it's 0.0.0.x, 255.255.255.x, and 170.130.179.x.

got it. thanks.

@dogie
splitting the image to 256 16x16 pics can make things a lot easier. though I'm not sure how to do it afterwards in a simple way.
administrator
Activity: 5222
Merit: 13032
October 21, 2015, 11:04:56 AM
#13
having a hard time understanding this.
so the top left would be xx.0.0.0 and xx.255.255.255 for the top right pixel, and xx.170.130.179 for the blue dot near the bottom right... am I correct?

The numbers are right, but it's 0.0.0.x, 255.255.255.x, and 170.130.179.x.
copper member
Activity: 924
Merit: 1007
hee-ho.
October 21, 2015, 09:45:35 AM
#12
having a hard time understanding this.
so the top left would be xx.0.0.0 and xx.255.255.255 for the top right pixel, and xx.170.130.179 for the blue dot near the bottom right... am I correct?
legendary
Activity: 1078
Merit: 1042
www.explorerz.top
October 21, 2015, 08:48:49 AM
#11
any chance to get this on a world map?
hero member
Activity: 784
Merit: 501
October 21, 2015, 08:40:18 AM
#10
Looks like a Nebula.

Here's the image (zoom in):
https://bitcointalk.org/banmap201510.png

What does X & Y axis stand for in this image ?
legendary
Activity: 1666
Merit: 1185
dogiecoin.com
October 21, 2015, 05:34:34 AM
#9
@Theymos is there a way to convert/anon the data such that it could be released?

You can already reconstruct a lot of the data from the graph with some work. Given a pixel position, you can calculate its /24 address. I'm hesitant to publish the source data because, given that, it's more likely that you'll be able to figure out which data entries I fudged.

I'm not understanding why it is an issue if someone could work out evil IP ranges. The high ones are almost all going to be VPNs and it doesn't identify anyone. The years of data may be useful to others operating other bitcoin services to pre-empt problems before they occur. Regardless, deconstructing the image is beyond my paygrade so unless someone else can get me the pixel data into a written data form I'll have to pass.
legendary
Activity: 2674
Merit: 2965
Terminated.
October 21, 2015, 03:30:13 AM
#8
Looks pretty good. How long did it take you to visualize it? I always wonder why you never tend to update (points @reported posts and accuracy). Honestly, I was expecting more red blocks.
administrator
Activity: 5222
Merit: 13032
October 21, 2015, 03:06:40 AM
#7
@Theymos is there a way to convert/anon the data such that it could be released?

You can already reconstruct a lot of the data from the graph with some work. Given a pixel position, you can calculate its /24 address. I'm hesitant to publish the source data because, given that, it's more likely that you'll be able to figure out which data entries I fudged.
administrator
Activity: 5222
Merit: 13032
October 21, 2015, 03:00:57 AM
#6
Just curious - Is it the last used IP?

All IPs on file for them are banned, and each one will affect its neighbors.

Do evil points ever fade away

Yes. This map is pretty short-term. And I'm probably not going to update it. But it's still interesting IMO.
legendary
Activity: 1666
Merit: 1185
dogiecoin.com
October 21, 2015, 03:00:30 AM
#5
Do evil points ever fade away or is the map consistent forever.
And it looks like the Internet is not so evil after all except for that one well defined corner  Grin
Last I heard they do decay.


@Theymos is there a way to convert/anon the data such that it could be released? I've never visualised something of only nodes, would be interesting to see what Gephi can do.
legendary
Activity: 2884
Merit: 1115
Leading Crypto Sports Betting & Casino Platform
October 21, 2015, 02:57:49 AM
#4
Do evil points ever fade away over time or is the map consistent for certain ranges.
And it looks like the Internet is not so evil after all except for that one well defined corner  Grin
legendary
Activity: 1302
Merit: 1005
New Decentralized Nuclear Hobbit
October 21, 2015, 02:57:11 AM
#3
When someone is banned, their IP and some of their neighboring IPs receive evil points.

Just curious - Is it the last used IP? What happens when the IP an account registered with, is different from the IPs used later on?

It is most probably the IP address the account is registered with.
legendary
Activity: 1582
Merit: 1064
October 21, 2015, 02:50:11 AM
#2
When someone is banned, their IP and some of their neighboring IPs receive evil points.

Just curious - Is it the last used IP? What happens when the IP an account registered with, is different from the IPs used later on?
administrator
Activity: 5222
Merit: 13032
October 21, 2015, 02:40:32 AM
#1
When someone is banned, their IP and some of their neighboring IPs receive evil points. The thought occurred to me recently that you could create a map of the Internet according to evil points, and I couldn't resist doing this right away. The result is pretty cool-looking IMO. It also seems to show that the evil score system is working as expected: the vast majority of the Internet is not being forced to pay, and in the isolated sections where a registration fee is required, prohibitively-large fees are very rare.

Here's the image (zoom in):
https://bitcointalk.org/banmap201510.png

Each pixel is a /24 address block (ie. each pixel represents 256 IP addresses). The colors are:
Zero or nearly zero evil
A small amount of evil
More
More
At this point you actually have to pay if you register an account in this block
More
More
More
Pretty high
A ton of evil, more than anyone is likely to pay

This is per block, so a single IP address could have an evil score requiring payment while its block still shows up as black here. A colored pixel indicates the evil score of a typical IP in that block.

Addresses are laid out in the standard way. So you can for example cross-reference with these maps: https://ant.isi.edu/address/

A /24 should almost never uniquely identify someone, but to be safe I randomly added, removed, and modified some of this data for plausible deniability.
Jump to: