Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # IN CHROME, GO TO https://myvote.wi.gov/en-US/TrackMyBallot
- # PUSH F12, OR RIGHT CLICK AND INSPECT ANYWHERE ON PAGE
- # CLICK ON CONSOLE TAB (IN DEV TOOLS)
- # PASTE ALL OF THIS CODE, ADDING AS MANY "checkForDeadPeople" AT THE BOTTOM
- # IT SHOULD PRINT OUT "FOUND" IF IT HAS A MATCH!!
- async function checkForDeadPeople(firstName, lastName, birthDate) {
- const response = await fetch(
- "https://myvote.wi.gov/DesktopModules/GabMyVoteModules/api/voter/search",
- {
- method: "POST",
- headers: {
- "Content-Type": "application/json",
- },
- body: JSON.stringify({
- firstName,
- lastName,
- birthDate,
- }),
- }
- );
- const data = await response.json();
- if (data['Data']['voters']['$values'].length > 0) {
- console.log('FOUND', firstName, lastName, birthDate)
- } else {
- console.log('not found')
- }
- }
- await checkForDeadPeople("Arthur", "Kriesel", "12/25/1935");
- await checkForDeadPeople('Gertrude', 'Koser', '03/17/1991');
- await checkForDeadPeople('Leonard', 'Crushinski', '08/23/1926');
RAW Paste Data