giovedì 26 gennaio 2023

Fix per l'errore 0x80070035

Oltre a tutta la procedura per abilitare Samba versione 1.0 potrebbe servire anche questo trick per sistemare il problema delle cartelle condivise non visibili nella rete. Andate nel registro a questo indirizzo:

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\LanmanWorkstation\Parameters

New > Dword (32bit)

AllowInsecureGuestAuth

Set it to "1"

giovedì 22 dicembre 2022

giovedì 1 dicembre 2022

Webcam pubbliche indicizzate su Google

Queste sono le stringhe di ricerca da googolare per trovare le webcam pubbliche sparse nel mondo:

inurl:"view/index.shtml"

inurl:"MultiCameraFrame?Mode=Motion"

VB Viewer inurl:/viewer/live/ja/live.html

intitle:"IP CAMERA Viewer" intext:"setting | Client setting"

intitle:"Device(" AND intext:"Network Camera" AND "language:" AND "Password"

intitle:"webcam 7" inurl:'/gallery.html'

intitle:"Yawcam" inurl:8081

inurl:control/camerainfo

intitle:"webcamXP 5" -download

inurl:"/view/view.shtml?id="

inurl:/view/viewer_index.shtml

intext:"powered by webcamXP 5"

intitle:webcam 7 inurl:8080 -intext:8080

intitle:"Live View / - AXIS" | inurl:view/view.shtml OR inurl:view/indexFrame.shtml | intitle:"MJPG Live Demo" | "intext:Select preset position"

allintitle: Axis 2.10 OR 2.12 OR 2.30 OR 2.31 OR 2.32 OR 2.33 OR 2.34 OR 2.40 OR 2.42 OR 2.43 "Network Camera "

allintitle:Edr1680 remote viewer

allintitle: EverFocus | EDSR | EDSR400 Applet

allintitle: EDR1600 login | Welcome

intitle:"BlueNet Video Viewer"

intitle:"SNC-RZ30" -demo

inurl:cgi-bin/guestimage.html

(intitle:(EyeSpyFX|OptiCamFX) "go to camera")|(inurl:servlet/DetectBrowser)

intitle:"Veo Observer XT" -inurl:shtml|pl|php|htm|asp|aspx|pdf|cfm -intext:observer

intitle:"iGuard Fingerprint Security System"

(intitle:MOBOTIX intitle:PDAS) | (intitle:MOBOTIX intitle:Seiten) | (inurl:/pda/index.html +camera)

intitle:"Edr1680 remote viewer"

intitle:"NetCam Live Image" -.edu -.gov -johnny.ihackstuff.com

intitle:"INTELLINET" intitle:"IP Camera Homepage"

intitle:"WEBDVR" -inurl:product -inurl:demo

intitle:"Middle frame of Videoconference Management System" ext:htm

tilt intitle:"Live View / - AXIS" | inurl:view/view.shtml

intitle:"AXIS 240 Camera Server" intext:"server push" -help

intitle:"--- VIDEO WEB SERVER ---" intext:"Video Web Server" "Any time & Any where" username password

intitle:HomeSeer.Web.Control | Home.Status.Events.Log

inurl:camctrl.cgi

intitle:"supervisioncam protocol"

intitle:"active webcam page"

lunedì 3 ottobre 2022

Driver WiFi Samsung Galaxy Book 750XDA

Visto che quei simpaticoni di Samsung hanno deciso di non rilasciare ufficialmente i driver per questo portatile, vi spiego come fare. Il trucchetto è molto semplice, anche se non hanno rilasciato i drive, usano comunque componenti di terze parti, proprio come la scheda di rete wireless, prodotta da Intel. In questo caso basta installare i driver del wifi del portatile e lasciare che Windows recuperi il resto dei driver da Windows Update.

Ecco i link:

https://downloadcenter.samsung.com/content/SW/201304/20130418102343442/SWUpdate_2.1.14.1.ZIP

https://www.intel.com/content/www/us/en/download/18231/684774/intel-proset-wireless-software-and-drivers-for-it-admins.html

lunedì 8 agosto 2022

lunedì 28 giugno 2021

Abilitare SMB 1.0 / CIFS Server da Powershell

Nella versione corrente di Windows 10 (21H1) non è più possibile installare la versione 1 del protocollo Samba, probabilmente per l'estrema insicurezza del protocollo. Peccato perchè era comunque utile alla condivisione semplificata di cartelle all'interno di una rete privata. Fortunatamente con Windows c'è sempre una scappatoia per aggirare i limiti del sistema operativo, e ne esiste una anche per questo caso.

Dal sito spiceworks.com l'utente Jon Dehen ha trovato questa soluzione:

List ALL optional features (there's likely a better way to filter results): Powershell

Get-WindowsOptionalFeature -Online

In this list I found the following: 

 

It turns out that you cannot just install the server by itself... you must FIRST install the overall SMB1Protocol, then uninstall the client and other deprecation option:

Enable-WindowsOptionalFeature -Online -FeatureName SMB1Protocol # Installs ALL SMB1 things

Disable-WindowsOptionalFeature -Online -FeatureName SMB1Protocol-Client # Remove the client 

Disable-WindowsOptionalFeature -Online -FeatureName SMB1Protocol-Deprecation # Remove the "automatic removal" Running those will leave only the server component installed.