Various updates, duoling exploit fixed, show descriptions in table of contents

This commit is contained in:
Sivert V. Sæther 2022-10-10 11:05:19 +00:00
parent 36ccc9c643
commit f7f09f4bab
5 changed files with 17 additions and 8 deletions

View File

@ -31,16 +31,14 @@ This is fine for passwd, but for system repair operations you'd want to unmount
For a system repair chroot setup use these additional mounts to make sure tools interacting with the system work.
Assuming you mounted the rootfs and potentially the boot/EFI partition to /boot or /boot/efi.
{{< highlight sh >}}mount -R /sys /mnt/sys
mount -R /dev /mnt/dev
mount -B /run /mnt/run
mount --make-rslave /mnt/sys
{{< highlight sh >}}mount -R /dev /mnt/dev
mount --make-rslave /mnt/dev
mount --make-slave /mnt/run
mount --types proc /proc /mnt/proc
mount -t proc proc /mnt/proc
mount -t sysfs sysfs /mnt/sys
mount -t tmpfs tmpfs /mnt/run
{{< /highlight >}}
The options -R and -B for mount are short hands for \-\-rbind and \-\-bind.
The options -R and -t for mount are short hands for \-\-rbind and \-\-types respectively.
## Fixing
For doing the password reset or other operations on the installation other than simple file edits, you just chroot into the installation.

View File

@ -9,6 +9,9 @@ chroma: true
toc: true
title: Tzsp2pcap
description: TaZmen Sniffer Protocol to Packet CAPture utility program.
git:
name: thefloweringash/tzsp2pcap
url: https://github.com/thefloweringash/tzsp2pcap
---
This is a very useful tool when working with Mikrotiks.

View File

@ -5,6 +5,7 @@ aliases: []
categories: ['exploit']
series: ['hacking']
tags: ['bug']
patched: true
chroma: false
toc: true
title: Duolingo Xp Exploit

View File

@ -5,6 +5,7 @@ aliases: []
categories: ['exploit']
series: ['hacking']
tags: ['bug']
patched: true
chroma: false
toc: true
title: Duolingo Xp Exploit

View File

@ -1,10 +1,16 @@
<aside id='meta'>
<header>
<h4>{{ or (.Param "tit") .Title }}</h4>
{{ if .Param "patched" }}
<p><b style="color: brightgreen">PATCHED</b></p>
{{ end }}
<p>
{{ i18n "wordCount" .WordCount }}.
{{ i18n "readingTime" .ReadingTime }}.
</p>
<p>
{{ .Param "description" }}
</p>
</header>
{{ if .Param "docs" }}
<h5>Documentation:</h5>
@ -29,4 +35,4 @@
{{ end }}
</ul>
{{ end }}
</aside>
</aside>