— iIT-Services

Archive
System

Software and utilities for data recovery from virtually any storage media. Simple and intuitive tools allow for recovery of damaged, inaccessible, or deleted files, documents, videos, and images from hard drives, solid-state drives, and memory cards.

Sysadmins and forensic specialists benefit from getting access to damaged or working virtual machines, corrupted or malfunction RAID 0-6 arrays, and other complex software and hardware configurations.

Among other tools:

  • Linux Recovery: Free recovery of Linux files and partitions from Windows
  • Partition Recovery: An expert tool for recovering lost partitions
  • Linux Reader: File and folder access on Ext, UFS, HFS, ReiserFS, or APFS file systems from Windows
  • Uneraser: Restore any deleted or corrupted file from NTFS, FAT32/exFAT/FAT, APFS, etc.

Source: https://www.diskinternals.com/download/.

Read More

Source: derived from https://www.tomshardware.com/software/linux/best-linux-distros-for-reviving-an-old-pc.

Read More

A list of tech platforms for productivity purposes, as alternatives to larger platforms.

Read More

There’s a command-line utility called shred, which overwrites data in a file or a whole device with random bits, making it nearly impossible to recover.

First of all, you need to identify the name of the device.

This might be something like /dev/sdb or /dev/hdb (but not like /dev/sdb1, that’s a partition). You can use sudo fdisk -l to list all connected storage devices, and find your external hard drive there.

N.B. Make sure it is the correct device, picking the wrong device will wipe it.

Unmount all currently mounted partitions on that device, if any. Then run the following, replacing /dev/sdX with the name of your device:

sudo shred -v /dev/sdX

This will overwrite all the blocks on the device with random data three times, the -v flag is for verbose and will print the current progress.

You can add the option -nN to only do this N times, to save time on large capacity devices. This might take a while, depending on the size of your external hard drive (I think it takes twenty minutes or so for my 4 GB flash drive).

You can also set all bits to zero after the last iteration by adding the option -z, I prefer to do this.

sudo shred -v -n1 -z /dev/sdX

After this, you would have to repartition the device. The easiest way is to install GParted and use it:

sudo apt-get install gparted
gksu gparted

Choose your device in the upper-right corner list. Then select Device -> Create partition table to create a partition table on the device.

Then add a single partition that uses all of the unallocated space on the device, choosing fat32 as the file system. Apply the changes by click the Apply button (the green checkmark) in the toolbar.

Read More

noScribe is an AI-based software designed for transcribing audio, particularly useful for qualitative social research and journalistic interviews. The software is free, open-source (licensed under GPL-3.0), and operates entirely offline, meaning no data is sent to the cloud, ensuring privacy. It can recognize up to 99 languages and distinguish between different speakers, which is particularly helpful for interviews with multiple participants.

The software includes an editor that allows users to review, verify, and correct the transcriptions manually. It utilizes advanced AI models, such as OpenAI’s Whisper, faster-whisper by Guillaume Klein, and pyannote by Hervé Bredin, for the transcription process.

It requires a relatively up-to-date computer to function efficiently, slower systems may result in long transcription times. The software is around 3.7 GB, poor audio quality may lead to transcription errors.

noScribe aims to reduce the difficulty of transcription for researchers and journalists, offering a reliable, private, and easy-to-use tool for processing interviews.

Find a review of noScribe (in German) here: https://sozmethode.hypotheses.org/2315.

Source: https://github.com/kaixxx/noScribe

Read More

Karen’s Directory Printer, the File Cataloging Utility for Windows, prints the name of every file on a drive, along with the file’s size, date and time of last modification, and attributes (Read-Only, Hidden, System and Archive) into a file: https://www.karenware.com/powertools/karens-directory-printer.

Read More

The magazine computerwoche.de published a list of handy Open Source Intelligence Tools, incl.:

  • Maltego – comprehensive tool for graphical link analyses that offers real-time data mining and information gathering, as well as the representation of this information on a node-based graph, making patterns and multiple order connections between said information easily identifiable
  • Recon-ng – gathering tool aimed at reducing the time spent harvesting information from open sources
  • theHarvester – emails, subdomains and names Harvester
  • Shodan – world’s first search engine for Internet-connected devices
  • Metagoofil – metadata harvester
  • searchcode – search 75 billion lines of code from 40 million projects
  • SpiderFoot – automates OSINT so one can find what matters, faster
  • Babel X – discover and decipher geographically diverse, multilingual data into actionable insights in real time, babel street’s platform helps interpret real-time data, so one can make clear, decisive decisions that impact any mission
  • Mitaka – browser extension for OSINT search
  • BuiltWith – search tech stack of specific websites
  • Wappalyzer – find the technology stack of any website
  • DarkSearch.io – self-declared “first real” “dark web” “search engine” (yet, no longer publicly available)
  • Grep.app – tool for searches across git repos

The list seems compiled from pcwdld.com, where more detailed descriptions of each tool can be found.

Furthermore, the OSINT Framework helps gathering information from free tools or resources by providing a very good overview of available applications, platforms, methods etc.

Read More