User Tools

Site Tools


software:free

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
software:free [2015/09/09 02:02] – [yEd] superwizardsoftware:free [2020/07/27 01:38] (current) – [afterglow] superwizard
Line 1: Line 1:
 +====== video recording and live streaming ======
 +
 +From: https://obsproject.com/
 +
 +Video screen capture screen recorder
 +
 +<code>
 +Free and open source software for video recording and live streaming. Download and start streaming 
 +quickly and easily on Windows, Mac or Linux.
 +</code>
 +
 +====== list of Best Free Software ======
 +
 +From: http://listoffreeware.com/
 +
 +<code>
 +We are the team behind some of the most popular tech blogs, like: I LoveFree Software and 
 +Windows 8 Freeware. We have made this website to provide a central place where all type of 
 +free software can be found. So, if you are looking for a free video editor, then instead of 
 +going to multiple sites to see various video editors, you can just come to this site and see 
 +the best video editors listed in one page.
 +</code>
 +
 +====== 8 Best Free DNS Changer Software For Windows ======
 +
 +From: http://listoffreeware.com/list-of-best-free-dns-changer/
 +
 +<code>
 +I have composed this list of freeware to change DNS easily. All of these software work perfectly 
 +well, are light weight, and work with latest versions of Windows. Change DNS settings on Windows 10,
 + Windows 8, or Windows 7; these software work just fine. 
 +</code>
 +
 +
 ====== Drawing and Diagram ====== ====== Drawing and Diagram ======
  
Line 7: Line 41:
  
 <code> <code>
-yEd is a powerful desktop application that can be used to quickly and effectively generate high-quality diagrams. +yEd is a powerful desktop application that can be used to quickly and effectively generate  
-Create diagrams manually, or import your external data for analysis. Our automatic layout algorithms arrange even large data sets with just the press of a button.+high-quality diagrams. Create diagrams manually, or import your external data for analysis.  
 +Our automatic layout algorithms arrange even large data sets with just the press of a button.
 </code> </code>
  
Line 27: Line 62:
  
 <code> <code>
-Calligra Flow is an easy to use diagramming and flowcharting application with tight integration to the other Calligra applications. It enables you to create network diagrams, organisation charts, flowcharts and more.+Calligra Flow is an easy to use diagramming and flowcharting application with tight integration  
 +to the other Calligra applications. It enables you to create network diagrams, organisation charts,  
 +lowcharts and more.
 </code> </code>
  
Line 197: Line 234:
 ====== afterglow ====== ====== afterglow ======
  
 +<WRAP center round box >
 http://afterglow.sourceforge.net/ http://afterglow.sourceforge.net/
  
Line 211: Line 249:
  
 additional (Secfurity Visualization) : http://secviz.org/ additional (Secfurity Visualization) : http://secviz.org/
 +
 +
 +Visualizing Packet Captures For Fun and Profit
 +Filed under: Log Analysis,Visualization — @ 21st of March 2012, 13:26 
 +
 +Have you ever collected a packet capture and you needed to know what the collected traffic is about? Here is a quick tutorial on how to use AfterGlow to generate link graphs from your packet captures (PCAP).
 +I am sitting at the 2012 Honeynet Project Security Workshop. One of the trainers of a workshop tomorrow just approached me and asked me to help him visualize some PCAP files. I thought it might be useful for other people as well. So here is a quick tutorial.
 +
 +From <https://raffy.ch/blog/2012/03/21/visualizing-packet-captures-for-fun-and-profit/> 
 +
 +
 +
 +</WRAP>
  
 ====== gnuplot ====== ====== gnuplot ======
Line 229: Line 280:
  
 http://www.nirsoft.net/panel/ http://www.nirsoft.net/panel/
 +
 +====== alternate data streams ======
 +
 +2018-08-23
  
 http://www.nirsoft.net/utils/alternate_data_streams.html http://www.nirsoft.net/utils/alternate_data_streams.html
 +
 +2018-08-23
 +
 +The SMB protocol supports a file metadata system similar to Macintosh forks known as Alternate Data Streams (ADSes hereafter). macOS did not support storing resource forks in ADSes on SMB volumes by default until Mac OS X v10.6.
 +
 +From <https://en.wikipedia.org/wiki/Resource_fork> 
 +
 +Now that we know what the unnamed data stream looks like, we can start thinking in terms of alternates. Knowing that the place we normally store data is the unnamed data stream, if a stream has a name, it is alternate. So if I had a file with an ADS named SecondStream, its full name would be, $DATA:”SecondStream”
 +
 +From <https://blogs.technet.microsoft.com/askcore/2013/03/24/alternate-data-streams-in-ntfs/> 
 +
 +STREAMS.EXE is fine, and I’ve used it for years, but with the release of Win8/Server 2012, I’ve discovered a new way of dealing with ADS….Windows PowerShell. Using the cmdlet, Get-Item,
 +
 +From <https://blogs.technet.microsoft.com/askcore/2013/03/24/alternate-data-streams-in-ntfs/> 
 +
 +ReFS initially did NOT support alternate data streams. However, this became a problem for things like FCI and other legitimate applications that utilized ADS. So new functionality was added to ReFS. It now supports ADS. 
 +No changes to support hardlinks at this time.
 +
 +From <https://blogs.technet.microsoft.com/askcore/2013/03/24/alternate-data-streams-in-ntfs/> 
 +
 +I don’t mean to be smart aleck about it…but that’s what it is. We know from my older blog that a file is divided up into ‘attributes’ and one of these attributes is $DATA or simply called the data attribute. It is the part of the file we put data into. So if I have a text file that says, “This is my text”, then if I look at the data attribute, it will contain a stream of data that reads, “This is my text”. However, this is the normal data stream, sometimes called the primary data stream, but more accurately it is called the unnamed data stream. Why? Because it is a data stream that has no name. In the jolly land of programming it is referred to as $DATA:””
 +
 +From <https://blogs.technet.microsoft.com/askcore/2013/03/24/alternate-data-streams-in-ntfs/> 
 +
 +gcm -ParameterName stream | select name
 +
 +The returned list of cmdlets which support Alternate Data Streams is: 
 +
 +Add-Content
 +
 +Clear-Content
 +
 +Get-Content
 +
 +Get-Item
 +
 +Out-String
 +
 +Remove-Item
 +
 +Set-Content
 +
 +From <http://www.happysysadm.com/2012/09/managing-alternate-data-streams-with.html> 
 +
 +
 +
 +
 +
 +====== Resource Fork ======
 +
 +2018-08-23
 +
 +
 +The SMB protocol supports a file metadata system similar to Macintosh forks known as Alternate Data Streams (ADSes hereafter). macOS did not support storing resource forks in ADSes on SMB volumes by default until Mac OS X v10.6.
 +
 +From <https://en.wikipedia.org/wiki/Resource_fork> 
 +
 +
  
 ====== Utilities (spotlight on) ====== ====== Utilities (spotlight on) ======
software/free.1441764145.txt.gz · Last modified: 2015/09/09 02:02 by superwizard