This commit is contained in:
2026-07-30 11:35:10 +05:00
commit 8a3ec978ad
113 changed files with 3384 additions and 0 deletions
Binary file not shown.

After

Width:  |  Height:  |  Size: 45 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 201 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 215 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 435 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 99 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 51 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 33 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 46 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 332 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 345 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 21 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 6.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 53 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 53 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 54 KiB

+22
View File
@@ -0,0 +1,22 @@
%% Zoottelkeeper: Beginning of the autogenerated index file list %%
[[cybersec/Photos/Pasted image 20250105162015.png|Pasted image 20250105162015.png]]
[[cybersec/Photos/Pasted image 20250105164935.png|Pasted image 20250105164935.png]]
[[cybersec/Photos/Pasted image 20250105165103.png|Pasted image 20250105165103.png]]
[[cybersec/Photos/Pasted image 20250105165110.png|Pasted image 20250105165110.png]]
[[cybersec/Photos/Pasted image 20250105165916.png|Pasted image 20250105165916.png]]
[[cybersec/Photos/Pasted image 20250105183609.png|Pasted image 20250105183609.png]]
[[cybersec/Photos/Pasted image 20250105185359.png|Pasted image 20250105185359.png]]
[[cybersec/Photos/Pasted image 20250317210934.png|Pasted image 20250317210934.png]]
[[cybersec/Photos/Pasted image 20250411213719.png|Pasted image 20250411213719.png]]
[[cybersec/Photos/Pasted image 20250411213749.png|Pasted image 20250411213749.png]]
[[cybersec/Photos/Pasted image 20250413192203.png|Pasted image 20250413192203.png]]
[[cybersec/Photos/Pasted image 20250416202446.png|Pasted image 20250416202446.png]]
[[cybersec/Photos/Pasted image 20250416202511.png|Pasted image 20250416202511.png]]
[[cybersec/Photos/Pasted image 20250416203106.png|Pasted image 20250416203106.png]]
[[cybersec/Photos/Pasted image 20250417102631.png|Pasted image 20250417102631.png]]
[[cybersec/Photos/Pasted image 20250417102751.png|Pasted image 20250417102751.png]]
[[cybersec/Photos/Pasted image 20250417111734.png|Pasted image 20250417111734.png]]
[[cybersec/Photos/Pasted image 20250417112443.png|Pasted image 20250417112443.png]]
[[cybersec/Photos/Pasted image 20250417122554.png|Pasted image 20250417122554.png]]
[[cybersec/Photos/Protocol cheatsheat|Protocol cheatsheat]]
%% Zoottelkeeper: End of the autogenerated index file list %%
+39
View File
@@ -0,0 +1,39 @@
## FTP / SFTP
**Порт** - tcp 21 (default)
**Основные комманды**:
- ls - просмотр директории
- get - получение файла
- mget - получение множества файлов
- put - загрузка файла на сервер
- mput - множественная загрузка файлов
- mkdir - создание директори
- cd - переход в директорию
- pwd - просмотр актуальной директории
- cdup - перемещение в конревую директорию
- ! - доступ к терминалу в своем пк не выходя из ftp
- rename - переименование
- delete - удаление
- mdelete - множественное удаление
## SMB
SMB - server message block/
**Порт** - 445 tcp
**Основные команды**:
- smbclient -L host - просмотр доступных папок на хосте
- smbclient \\\\host\\directory password - подключение к директории
Все остальные команы (FTP команды такие же)
![[Pasted image 20250413192203.png]]
## Redis
**Port** - 6379 TCP (default)
**Commands**:
- redis-cli -h hostname - подключение к удаленному хосту
- INFO - команда показывает информацию и статистику сервера
- SELECT database - выбор бызы данных
Сайты с командами редиса
https://www.koderhq.com/tutorial/redis/basic-commands/#basic
https://www.javaguides.net/2024/11/redis-commands-cheat-sheet.html