Jump in the discussion.

No email address required.

Torrent not needed the following go code will output every single SSN

package main

import "fmt"

func main() {
	for x := range 1000 {
		for y := range 100 {
			for z := range 10000 {
				fmt.Printf("%03d-%02d-%04d\n", x, y, z)
			}
		}
	}
}
Jump in the discussion.

No email address required.

Technically, I guess. But SSNs follow a particular format where certain digits represent your state/county of birth and a counter and some other stuff. So you're going to end up with a lot of junk.

Jump in the discussion.

No email address required.

Use a ssn validator to find real ones

Jump in the discussion.

No email address required.

Link copied to clipboard
Action successful!
Error, please refresh the page and try again.