Forum Replies Created
-
AuthorPosts
-
Support @QUE.COM
KeymasterThe Templates and Checklists
https://www.serdp-estcp.org/page/f7ad7e26-e8ef-11ec-9685-026db1cbe810Support @QUE.COM
KeymasterArduino Simple Obstacle Avoiding ROBO
How to Make A Simple And Easy Arduino Robot For Science Project
Support @QUE.COM
KeymasterA single command to search for hosts.
$ for ip in $(cat list.txt); do $ip.que.com; done.
// this is to automate listing sub-host of que.com domain.list.txt contains the following hosts.
web
ftp
test
server1Support @QUE.COM
KeymasterNetcat Remote Administration.
Netcat BIND Shell scenario.
From workstation 1 (IP: 10.10.10.300), a windows os.
c:\ nc -nvlp 5555 -e cmd.exeFrom workstation 2, a linux os.
$ nc -nv 10.10.10.300 5555Then, workstation 2 have access to the cmd.exe of workstation 1.
Netcat REVERSE Shell scenario.
From workstation 1 (IP: 10.10.10.300), a windows os.
c:\ nc -nvlp 5555From workstation 2, a linux os.
$ nc -nv 10.10.10.300 5555 -e /bin/bashOnce connected, the workstation 1 will have access to the linux shell prompt.
Done.Support @QUE.COM
KeymasterUsing NETCAT
Connect to network.
workstation 1 (IP: 10.10.10.200)
$ nc -nvlp 8888workstation 2
$ nc -nv 10.10.10.200 8888Transferring files using netcat.
workstation 1 (IP: 10.10.10.200)
$ nc -nvlp 8888 > incoming.exeworkstation 2
Use wget as example.
$ locate wget // to find the path
$ nc -nv 10.10.10.200 8888 < /path/wget.exe To check it, go to workstation and run incoming.exe $ incoming.exe -V //to check the version of the program, it should say WGET. You can rename it back to avoid confusion. Done.Support @QUE.COM
KeymasterExample of checking IPs of the access.log file. This will shows IPs in order.
$ cat access.log | cut -d ” ” -f 1 | sort uResults.
200.10.10.2
208.20.10.5
70.30.10.89
71.89.10.101
98.77.10.123
99.11.11.18Show unique IPs and how many times it connect to the target machine.
$ cat access.log | cut -d ” ” -f 1 | uniq -c | sort urn1080 200.10.10.2
90 208.20.10.5
75 70.30.10.89
50 71.89.10.101
20 98.77.10.123
10 99.11.11.18October 5, 2022 at 5:59 pm in reply to: SCAP Compliance Checker (SCC) not able to scan computers in Active Directory. #51467Support @QUE.COM
KeymasterRESOLVED.
I run the SCAP to one of the member server, to scan all member servers and workstations.
Completed the scan.I run the SCAP to one of the domain controller (DC), to scan all domain controllers.
Completed the scan.One thing to note.
I created a new policy for TCP 139 and 445, linked to GPO and enforced.I’m happy I was able to find a solution. I hope this help you.
Support @QUE.COM
Keymasterwe can use powershell to check if it is present on the system, if it is, we can also use powershell script to uninstall it.
1. check if it is present:
Get-WindowsCapability -Online -Name “SNMP*”2. Then to install it run:
Remove-WindowsCapability -Online -Name “SNMP.Client~~~~0.0.1.0”Support @QUE.COM
KeymasterMake sure that SNMP services are running:
Get-Service SNMP*
Support @QUE.COM
KeymasterYou can enable all rules or just a specific one:
Get-NetFirewallrule -DisplayName *snmp* | Enable-NetFirewallRule
Get-NetFirewallrule SNMP-Out-UDP | Disable-NetFirewallRulesource: woshub.com/install-configure-snmp-service-windows/
Support @QUE.COM
KeymasterCreate a new git repository.
Go to github.
Log in to your account.
Click the new repository button in the top-right.
Click the “Create repository” button.$ git remote add origin https://github.com/username/new_repo
$ git push -u origin masterexample.
git remote add origin https://github.com/KINGdotNET/new_repo.git
git branch -M main
git push -u origin maingit remote set-url origin https://github.com/KINGdotNET/new_repo.git
git remove -v // check the status of remote originSupport @QUE.COM
KeymasterFrom Moralis.
This is how to create your own NFT, build a layer using photoshop.Support @QUE.COM
KeymasterIf you have untracked file, simply issue the command.
git add *
git commit -am ‘your comment’
git push [enter] – This is to upload all file/uploaded changes.Support @QUE.COM
Keymaster# force push
git push origin +branchnameSupport @QUE.COM
KeymasterWhen I run
npm install
, it returns withERR! code EINTEGRITY
This works for me.
npm cache clear –force && npm install –no-shrinkwrap –update-binaryOR
npm config set package-lock false
other alternative options.
https://stackoverflow.com/questions/47545940/when-i-run-npm-install-it-returns-with-err-code-eintegrity-npm-5-3-0 -
AuthorPosts