DISABLE SMBv1

SMBv1 DISABLE

To disable SMBv1 using Windows Registry, search for regedit in the Start menu and open it.

After opening Windows Registry, navigate to the following location:

HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\LanmanServer\Parameters

In the right panel right-click and select the option “New” and then “DWORD (32-bit) Value.”

Name the new value “SMB1” and press Enter.

Double-click on the newly-created value, enter “0” in the Value Data field and click on the “Ok” button.

Just restart your system and SMBv1 will be disabled. If you ever want to revert back, simply change the value data to “1.”

While disabling or removing SMBv1 might cause some compatibility issues with old computers or software, SMBv1 has significant security vulnerabilities.

RSAT FOR WIN7

RSAT FOR WIN7

Remote Server Administration Tools for Windows® 7 with SP1 enables IT administrators to manage roles and features that are installed on computers that are running Windows Server® 2008 R2, Windows Server® 2008, or Windows Server® 2003, from a remote computer that is running Windows 7 or Windows 7 with SP1.

(more…)

Windows Environment Variables

About Environment Variables

Environment variables are specially named aliases for basic system properties. Here is the Microsoft definition:

Environment variables are strings that contain information such as drive, path, or file name. They control the behavior of various programs. For example, the TEMP environment variable specifies the location in which programs place temporary files.

(more…)

WELCOME 2 TERMUX

 

 

The Linux Experience on Mobile Devices

Introduction

In today’s world, mobile devices have evolved from mere communication tools into powerful computing platforms. A key player in this transformation is Termux, an application for Android devices that offers a comprehensive terminal emulator and Linux environment. In this article, we will explore what Termux is, why you should use it, and its fundamental features.

What is Termux?

Termux is an application for Android operating systems that functions as a Linux-based terminal emulator and command-line interface. It offers users a near-complete Linux experience with advanced features and a broad package repository, making it suitable for programming, file management, network analysis, and more.

Why Should You Use Termux?

There are several reasons to choose Termux:

  • Mobile Freedom: Termux transforms your Android device into a full-fledged computing tool. You can work in a Linux-based environment wherever you are.

  • Learning and Development: It’s an excellent learning tool for students and developers. Termux facilitates gaining experience in various programming languages and tools.

  • Security Research: For IT professionals and security researchers, Termux is a valuable tool for fieldwork.

  • Customizability and Extensibility: Termux can be customized to meet user needs and expanded with various plugins.

Key Features of Termux

  • Linux Terminal Experience: Supports popular shells like Bash and Zsh.

  • Comprehensive Package Management: Install many Linux packages using apt or pkg.

  • Development Tools: Allows development in languages like Python, Ruby, Node.js.

  • SSH Access: Functions as both an SSH client and a server.

  • File Editing and Management: Edit files using editors like Vim and Nano.

Conclusion

Termux is a Linux-based terminal emulator for Android devices, transforming them into powerful computing and development tools. Suitable for both learning and professional use, this application offers flexibility and powerful functionality on mobile devices. Termux is an ideal tool for technology enthusiasts, developers, and IT professionals, allowing you to push the limits and experience a full Linux environment on your mobile device.

Special commands to sqlite3 (dot-commands)

Special commands to sqlite3 (dot-commands)

Most of the time, sqlite3 just reads lines of input and passes them on to the SQLite library for execution. But input lines that begin with a dot (“.”) are intercepted and interpreted by the sqlite3 program itself. These “dot commands” are typically used to change the output format of queries, or to execute certain prepackaged query statements. There were originally just a few dot commands, but over the years many new features have accumulated so that today there are over 60.

For a listing of the available dot commands, you can enter “.help” with no arguments. Or enter “.help TOPIC” for detailed information about TOPIC. The list of available dot-commands follows:
(more…)