Comparing files with Powershell

I know I put something about graylog but in reality I like living off the land, basically you can compare hashes of files in every directory. repeat that same loop. Here is a script that demonstrates how to get the hash of a file using PowerShell and then compare it to a previously stored hash: […]

Read More Comparing files with Powershell

GRAYLOG OverVIEW

Graylog is a log management platform that allows you to collect, index, and analyze log messages from various sources, such as servers, applications, and devices. It helps you to identify and troubleshoot issues more quickly, and to monitor the health and performance of your infrastructure and applications. Graylog consists of a server component that collects […]

Read More GRAYLOG OverVIEW

SPLUNK BABY!

Splunk is a software platform that allows users to search, analyze, and visualize machine-generated data. It is commonly used for log analysis, security, and operational intelligence. Here are some key features of Splunk: Overall, Splunk is a powerful tool for analyzing and understanding machine-generated data, and it is widely used in a variety of industries, […]

Read More SPLUNK BABY!

JAVA NFT

An NFT, or non-fungible token, is a digital asset that represents ownership of a unique item or asset. NFTs are created and stored on a blockchain, which allows them to be easily bought, sold, and transferred while maintaining a verifiable record of ownership. One example of an NFT might be a digital artwork, where each […]

Read More JAVA NFT

SQL Learning

SQL (Structured Query Language) is a programming language used to manage and manipulate data stored in relational databases. If you want to learn SQL, here are some steps you can follow: It’s also a good idea to get hands-on experience by working on real-world projects or participating in online coding challenges. This will help you […]

Read More SQL Learning

Variables in Java

In Java, a variable is a piece of storage that holds a value. You can think of a variable as a container that holds data. Variables have a specific type, which determines what kind of values they can hold. For example, an integer variable can hold only whole numbers, while a string variable can hold […]

Read More Variables in Java

Docker

Docker is a tool designed to make it easier to create, deploy, and run applications by using containers. Containers allow a developer to package up an application with all of the parts it needs, such as libraries and other dependencies, and ship it all out as one package. Here are some examples of how Docker […]

Read More Docker

Java Arrays

An array in Java is a data structure that allows you to store a fixed-size collection of elements of the same type. You can think of an array as a list or sequence of elements, where each element is identified by an index. Here is an example of how to declare and initialize an array […]

Read More Java Arrays

nmap

Nmap (short for Network Mapper) is a free and open-source network scanner tool that is used to discover hosts and services on a computer network. It can be used to scan both large networks and small networks, such as a local network at home or a single host. Nmap uses raw IP packets to determine […]

Read More nmap

Java Sets

The java.util.Set interface is a member of the Java Collections Framework and extends the java.util.Collection interface. It is an unordered collection of objects, in which duplicate values cannot be stored. Some of the common methods of the Set interface are: add(E e): Adds the specified element to this set if it is not already present.clear(): […]

Read More Java Sets