Friday, December 22, 2023

AVe Cezare

 https://www.bitdefender.com/solutions/free.html

https://www.totalav.com/en/free-antivirus

https://www.zonealarm.com/software/free-antivirus

https://zemana.com/us/antimalware.html

https://www.hitmanpro.com/en-us

https://www.bleepingcomputer.com/download/windows/

https://www.malwarefox.com/remove-malware/

https://www.sophos.com/en-us/free-tools/virus-removal-tool

https://www.sophos.com/en-us/free-tools/sophos-xg-firewall-home-edition/software

wmic product get name,version


The TRON SCRIPT=

https://bmrf.org/repos/tron

use only=

stage_0_prep

stage_3_disinfect

DNS JOE=


Norton ConnectSafe offers DNS server addresses that automatically block certain types of content. Check out the following options below: 

  • Security (malware, phishing sites and scam sites):
    • DNS 1 = 198.153.192.40, DNS 2 = 198.153.194.40
  • Security + Pornography:
    • DNS 1 = 198.153.192.50, DNS 2 = 198.153.194.50
  • Security + Pornography + Non-Family Friendly:
    • DNS 1 = 198.153.192.60, DNS 2 = 198.153.194.60

By applying these settings to your router, you can fortify your network against potential threats. Let’s explore the process of manually applying DNS server addresses on different router models.

1.1.1.1 =

Malware Blocking Only

Change your router DNS to:

1.1.1.2

1.0.0.2

Malware and Adult Content Blocking Together

Change your router DNS to:

1.1.1.3

1.0.0.3


Common secure DNS services
ProviderPrimary IPSecondary IPwebsite
Cloudflare1.1.1.11.0.0.1https://www.cloudflare.com/learning/dns/what-is-1.1.1.1/
Comodo8.26.56.268.20.247.20https://www.comodo.com/secure-dns/
Google8.8.8.88.8.4.4https://developers.google.com/speed/public-dns/faq
Quan99.9.9.9149.112.112.112https://www.quad9.net/faq/
OpenDNS (Cisco)208.67.222.222208.67.220.220https://www.opendns.com/setupguide/


https://docs.umbrella.com/deployment-umbrella/docs/point-your-dns-to-cisco

The Umbrella IPv4 addresses are:

  • 208.67.222.222
  • 208.67.220.220

The Umbrella IPv6 addresses are:

  • 2620:119:35::35
  • 2620:119:53::53


++

https://safing.io/download/

https://www.makeuseof.com/micro-habits-to-change-your-life

Monday, December 4, 2023

Ama3on Linux2

 https://medium.com/shehuawwal/download-and-run-amazon-linux-2-ami-locally-on-your-virtualbox-or-vmware-b554a98dcb1c


https://suriyal.com/install-amazon-linux-2-on-virtualbox/


https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/ec2-lamp-amazon-linux-2.html


https://letsencrypt.org/




++




How to start Office for Windows applications in Office Safe Mode

Use one of these methods to start an Office application in Office Safe Mode on a Windows PC:

This method works for most Office versions on a Windows PC:

  1. Find the shortcut icon for your Office application.

  2. Press and hold the CTRL key and double-click the application shortcut.

  3. Click Yes when a window appears asking if you want to start the application in Safe Mode.

Note:  To stop Office Safe Mode, exit and restart your Office application. It will start in normal mode unless there's a problem opening the application.

This method works for most Office versions on a Windows PC:

  1. Right-click the Start button (lower-left corner) in Windows, and click Run.

    Alternatively, you can press the Windows logo key and the R key on your keyboard.

  2. In the Run box, type one of these commands:

    • For Excel: Type excel /safe, and click OK.

    • For Outlook: Type outlook /safe, and click OK.

    • For Word: Type winword /safe, and click OK.

    • For PowerPoint: Type powerpnt /safe, and click OK.

    • For Publisher: Type mspub /safe, and click OK.

    • For Visio: Type visio /safe, and click OK.

  1. program fpopenai_6;
  2. {
  3.   Demo on how to use openai in Freepascal
  4.   Find out more at https://openai.com where you can also obtain a key.
  5.   Put the key in a file called openai.key surrounded by single quotes.
  6.        
  7.   Enjoy, Thaddy de Koning, 26 december 2022
  8. }  
  9. {$mode objfpc}{$ifdef mswindows}{$apptype console}{$endif}{$H+}
  10. uses classes,sysutils,fphttpclient,opensslsockets,fpJson,jsonparser;
  11. const
  12.   model ='{"model": "text-davinci-003",  "prompt": "%s","temperature": 0.7,"max_tokens": 3000,"top_p": 1,  "frequency_penalty": 0,  "presence_penalty": 0}';
  13. var
  14.   d:TJsonData;
  15.   s:string;
  16. begin
  17.   writeln('What is your request?');
  18.   readln(s);
  19.   writeln;
  20.   with TfpHttpClient.Create(nil) do
  21.   Try
  22.     AllowRedirect:= true;
  23.     RequestHeaders.Add('Content-Type: application/json');
  24.     // put your key with single quotes in a textfile called openai.key
  25.     RequestHeaders.Add('Authorization: Bearer '+{$I openai.key});
  26.     RequestBody:=TStringStream.Create(format(model,[s]));    
  27.     writeln('Please wait for the response, this can take some time:');
  28.     try
  29.       try
  30.         d:=GetJson(Post('https://api.openai.com/v1/completions'));
  31.         writeln(d.findpath('choices[0].text').AsString);
  32.       except
  33.         writeln('The engine was not able to answer your request ',ResponseStatusCode);
  34.       end;
  35.     finally
  36.       d.free;
  37.     end;    
  38.   finally
  39.     RequestBody.Free;
  40.     Free;
  41.   end;
  42. end.