Pages:
Author

Topic: Evil score visualization (Read 2853 times)

member
Activity: 68
Merit: 10
November 20, 2017, 06: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, 06:15:54 AM
#29
how to remove it ? cause fee is very small, hard to make a transaction
legendary
Activity: 2058
Merit: 1431
December 06, 2015, 06: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: 1183
dogiecoin.com
November 30, 2015, 12:07:40 PM
#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, 02:53:21 AM
#26
Quick aside: NERDS!  Grin
legendary
Activity: 1666
Merit: 1183
dogiecoin.com
October 25, 2015, 02: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, 05: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, 11: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, 10: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, 10: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: 1183
dogiecoin.com
October 21, 2015, 08: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, 08: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: 1183
dogiecoin.com
October 21, 2015, 08: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: 1009
October 21, 2015, 05: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: 1024
October 21, 2015, 01: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, 01: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, 12:30:42 PM
#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: 5166
Merit: 12850
October 21, 2015, 12:04:56 PM
#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, 10: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, 09:48:49 AM
#11
any chance to get this on a world map?
Pages:
Jump to: