Windows 10: Virus attack from Sudoku site.

Discus and support Virus attack from Sudoku site. in Windows 10 Software and Apps to solve the problem; At least 3 different times when playing Microsoft Sudoku, I have been transferred to a ("Windows 10") website saying that I am infected and my computer... Discussion in 'Windows 10 Software and Apps' started by AlanKreidler, Dec 8, 2018.

  1. Virus attack from Sudoku site.


    At least 3 different times when playing Microsoft Sudoku, I have been transferred to a ("Windows 10") website saying that I am infected and my computer will be frozen. Last night I copied the website address.


    It is (https://d2fr3ju18wq5zo.cloudfront.net/v1/iedge1.html?trk=pastion-taried.com&osv=Windows%2010&cep=Gmz2Nigm9pAQJkv-MCpEEnJST5V3wabjJaSgByvl9Q_cakYzBhoXFgWGs-cVUj7Ug3fSY_oU8NTlBmFM13P5p3JxYd4eFPPuX650Zk_3XS60mDoB_Vva0krBwdBbwwpRPfZw7XUNbQKHLw5ZKo5FTaMwyaq1FU95ZbrBrOGQ5lYJn8ZhliHA7ZyBDe-NOhaxk4YTKVBTrzwjilonB9bdQQvca-6C9wF7Ofy1AzhhOzfNgz7qoDC1Zd5jmOjzDkpaXtuU2rNthzMrigxF4DX1bA&zone=1806371-3979200730-0&country=US&time=1544242260&cid=154424225904131872****).


    I unplug the Internet and then run virus scan. Last night nothing was left behind... but in the past items were found. Can this be traced and possibly alleviated? I really love the games, but if this continues, I will need to delete the app.

    :)
     
    AlanKreidler, Dec 8, 2018
    #1
  2. GSquadron Win User

    Java sudoku

    A friend of mine gave me a java sudoku ready, i just modified the main part but looks like it
    doesn't show up anything (used the code in neatbeans and in eclipse too):
    Code: package javaapplication2; import java.util.*; public class Main { public static void main(String args[]){} Random generator = new Random(); int[] serie = new int[9]; int[][] sudoku = new int[9][9]; int[][] select = new int[9][9]; int livello; public Main(int livello) { this.livello = livello; for (int i=0; i<9; i++) { for (int j=0; j<9; j++) { select[j] = -1; } } for (int i=0; i<9; i++) { for (int j=0; j<9; j++) { sudoku[j] = -1; } } for (int i=0; i<9; i++) { serie = -1; } } private void genArray() { int numCas = Math.abs(generator.nextInt(9))+1; for (int i=0; i<9;i++) { if (i==0) { serie = numCas; } else { while (serie[0] == numCas || serie[1] == numCas || serie[2] == numCas || serie[3] == numCas || serie[3] == numCas || serie[4] == numCas || serie[5] == numCas || serie[6] == numCas || serie[7] == numCas || serie[8] == numCas) { numCas = Math.abs(generator.nextInt(9))+1; } serie = numCas; } } } private void generateSudoku() { for (int i=0; i<9; i++) { if (i==0) { for (int k=0; k<9; k++) { sudoku[k] = serie[k]; } } else if (i==2) { for (int k=0; k<6; k++) { sudoku[k+3] = serie[k]; } for (int k=0; k<3; k++) { sudoku[k] = serie[k+6]; } } else if (i==1) { for (int k=0; k<3; k++) { sudoku[k+6] = serie[k]; } for (int k=0; k<6; k++) { sudoku[k] = serie[k+3]; } } else if (i==3) { for (int k=0; k<8; k++) { sudoku[k+1] = serie[k]; } for (int k=0; k<1; k++) { sudoku[k] = serie[k+8]; } } else if (i==5) { for (int k=0; k<5; k++) { sudoku[k+4] = serie[k]; } for (int k=0; k<4; k++) { sudoku[k] = serie[k+5]; } } else if (i==4) { for (int k=0; k<2; k++) { sudoku[k+7] = serie[k]; } for (int k=0; k<7; k++) { sudoku[k] = serie[k+2]; } } else if (i==6) { for (int k=0; k<7; k++) { sudoku[k+2] = serie[k]; } for (int k=0; k<2; k++) { sudoku[k] = serie[k+7]; } } else if (i==8) { for (int k=0; k<4; k++) { sudoku[k+5] = serie[k]; } for (int k=0; k<5; k++) { sudoku[k] = serie[k+4]; } } else if (i==7) { for (int k=0; k<1; k++) { sudoku[i][k+8] = serie[k]; } for (int k=0; k<8; k++) { sudoku[i][k] = serie[k+1]; } } } for (int i=0; i<9; i++) { for (int j=0; j<9; j++) { System.out.print(sudoku[i][j] + " "); } System.out.println(""); } arrange(); for (int i=0; i<9; i++) { for (int j=0; j<9; j++) { System.out.print(sudoku[i][j] + " "); } System.out.println(""); } } private void arrange() { int cas = Math.abs(generator.nextInt(3)); for (int i=0; i<9; i++) { if (cas == 0) { if (i == 0) { swap0(i); } else if (i == 3) { swap0(i); } else if (i == 6) { swap0(i); } } else if (cas == 1) { if (i == 0) { swap1(i); } else if (i == 3) { swap1(i); } else if (i == 6) { swap1(i); } } else if (cas == 2) { if (i == 0) { swap2(i); } else if (i == 3) { swap2(i); } else if (i == 6) { swap2(i); } } cas = Math.abs(generator.nextInt(3)); } } private void swap0(int pivot) { int aux; for (int j=0; j<9; j++) { aux = sudoku[pivot][j]; sudoku[pivot][j] = sudoku[pivot+1][j]; sudoku[pivot+1][j] = aux; aux = sudoku[pivot+1][j]; sudoku[pivot+1][j] = sudoku[pivot+2][j]; sudoku[pivot+2][j] = aux; } for (int j=0; j<9; j++) { aux = sudoku[j][pivot]; sudoku[j][pivot] = sudoku[j][pivot+2]; sudoku[j][pivot+2] = aux; } } private void swap1(int pivot) { int aux; for (int j=0; j<9; j++) { aux = sudoku[pivot][j]; sudoku[pivot][j] = sudoku[pivot+2][j]; sudoku[pivot+2][j] = aux; aux = sudoku[pivot+1][j]; sudoku[pivot+1][j] = sudoku[pivot+2][j]; sudoku[pivot+2][j] = aux; } for (int j=0; j<9; j++) { aux = sudoku[j][pivot]; sudoku[j][pivot] = sudoku[j][pivot+1]; sudoku[j][pivot+1] = aux; aux = sudoku[j][pivot+1]; sudoku[j][pivot+1] = sudoku[j][pivot+2]; sudoku[j][pivot+2] = aux; } } private void swap2(int pivot) { int aux; for (int j=0; j<9; j++) { aux = sudoku[pivot][j]; sudoku[pivot][j] = sudoku[pivot+2][j]; sudoku[pivot+2][j] = aux; } for (int j=0; j<9; j++) { aux = sudoku[j][pivot]; sudoku[j][pivot] = sudoku[j][pivot+2]; sudoku[j][pivot+2] = aux; aux = sudoku[j][pivot+1]; sudoku[j][pivot+1] = sudoku[j][pivot+2]; sudoku[j][pivot+2] = aux; } } public void select() { int numX; int numY; genArray(); generateSudoku(); if (livello == 0) { for (int i=0; i<30; i++) { numX = Math.abs(generator.nextInt(9)); numY = Math.abs(generator.nextInt(9)); while (select[numX][numY] != -1) { numX = Math.abs(generator.nextInt(9)); numY = Math.abs(generator.nextInt(9)); } select[numX][numY] = sudoku[numX][numY]; } } else if (livello == 1) { for (int i=0; i<20; i++) { numX = Math.abs(generator.nextInt(9)); numY = Math.abs(generator.nextInt(9)); while (select[numX][numY] != -1) { numX = Math.abs(generator.nextInt(9)); numY = Math.abs(generator.nextInt(9)); } select[numX][numY] = sudoku[numX][numY]; } } else if (livello == 2) { for (int i=0; i<10; i++) { numX = Math.abs(generator.nextInt(9)); numY = Math.abs(generator.nextInt(9)); while (select[numX][numY] != -1) { numX = Math.abs(generator.nextInt(9)); numY = Math.abs(generator.nextInt(9)); } select[numX][numY] = sudoku[numX][numY]; } } try { notifyAll(); } catch (Exception e) { } for (int i=0; i<9; i++) { for (int j=0; j<9; j++) { System.out.print(sudoku[i][j] + " "); } System.out.println(""); } } }[/quote] Where the problem is here? It compiles perfectly! Nothing shows on the screen *Confused Virus attack from Sudoku site. :confused:[/i][/i][/i][/i][/i]
     
    GSquadron, Dec 8, 2018
    #2
  3. Windows 10 upgrade with virus attacks

    This isn't a question - just a statement. Since my download and install of Windows 10 I'm continually (every couple hours) getting blasted with attacks of the Trojan.Dropper virus. Thankfully my Norton Security is detecting and blocking it. But I
    didn't see this listed as a feature of the software when I downloaded it. Virus attack from Sudoku site. :) I'd like Microsoft to know about this so if someone out there with more knowledge that me could forward it to them, I'd appreciate it. It really isn't a problem, just unsettling
    getting these attack messages all the time. Before this I'd get maybe 3 virus messages a year let alone a day.
     
    GeorgeZiatts, Dec 8, 2018
    #3
  4. somnathpc Win User

    Virus attack from Sudoku site.

    Virus Attack

    my pc virus attack

    **Post moved by the moderator to the appropriate forum category.**
     
    somnathpc, Dec 8, 2018
    #4
Thema:

Virus attack from Sudoku site.

Loading...
  1. Virus attack from Sudoku site. - Similar Threads - Virus attack Sudoku

  2. Virus Attack danger

    in Windows 10 Gaming
    Virus Attack danger: Hi,I think I have been victim of a Virus attack and I'm not sure how to fix this.I searched in google for Google Drive download and by mistake I clicked on a "Add" link that looked exactly like google Drive. But after clicking install nothing happened. Link "->...
  3. Virus Attack danger

    in Windows 10 Software and Apps
    Virus Attack danger: Hi,I think I have been victim of a Virus attack and I'm not sure how to fix this.I searched in google for Google Drive download and by mistake I clicked on a "Add" link that looked exactly like google Drive. But after clicking install nothing happened. Link "->...
  4. Ransomware Virus attack .kasp

    in AntiVirus, Firewalls and System Security
    Ransomware Virus attack .kasp: My system got infected by .KASP ransomware virus. I removed the virus to some extent from my system but all my drives are affected. All my files got encrypted and I am not able to access any of the files. All files got changed with.kasp extension. My files are online...
  5. Please help!!! Virus attack from winrar download :(((

    in Windows 10 Ask Insider
    Please help!!! Virus attack from winrar download :(((: Hi. I need help!!! I downloaded a version of WinRaR from PB and it contained a virus. As soon as it launched, it completely erased Windows Defender. I can't initiate Windows Defender at all. It basically doesn't exist. On the "Security at a Glance" page, there is nothing....
  6. Virus ATTACK

    in AntiVirus, Firewalls and System Security
    Virus ATTACK: ATTACK???? what should I do??? @McAfee_Help caught it and quarantined it BUT...…. [ATTACH] https://answers.microsoft.com/en-us/protect/forum/all/virus-attack/9f6a5402-2b4e-47d4-8b42-bc2066c90ed6
  7. Virus Bei Microsoft Sudoku bekommen

    in AntiVirus, Firewalls and System Security
    Virus Bei Microsoft Sudoku bekommen: Wie bekommt man einen Virus bei Microsoft Sudoku wieder los? https://answers.microsoft.com/en-us/protect/forum/all/virus-bei-microsoft-sudoku-bekommen/34e7b088-3516-4322-bbd0-6ee43fa3f4d5
  8. virus attack

    in AntiVirus, Firewalls and System Security
    virus attack: my USB key containing vital information can't open again and it request me to format the key each time. the key is read only which makes ordinary formatting impossible, besides I don't wish to loss the information contained in this drive. what do I do?...
  9. Ransom virus attack

    in AntiVirus, Firewalls and System Security
    Ransom virus attack: Hi sir i am working at my computer when i saw a windows update pop up then i say my all files convert to .udjvu and encrypted please help me this pc is my office pc. I lose my job if data not give back to him[IMG]...
  10. Virus Attack

    in Windows 10 Backup and Restore
    Virus Attack: Good Day We had an virus attack by this one ( Dharma ,very all files encrypted and ended with .java extension.) No decryption as off yesterday . " all your data has been locked usYou want to return?write email L: GuardBTC@cock.li " :-) I managed via data recovery do...

Users found this page by searching for:

  1. virus attack sites

    ,
  2. pastion-taried

    ,
  3. iedge1.html

    ,
  4. pastion.taried,
  5. website pastion=taried,
  6. micosoft sudoku infected,
  7. microsoft sudoku infected