Prevent using cleartext passwords in e-mail protocols? [closed]

Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it’s on-topic for Server Fault. Closed 5 years ago. Improve this question Checking an older laptop in my possession, I found that all of the POP accounts set up on that device, were sending passwords … Read more

How to remove text after a 4 digit year in a file name

I am looking to remove all text after the 4 digit year of movie files: Input: Some.Movie.Name.2011.1080p.BluRay.x265.mp4 Another.Movie.Name.1999.1080p.BluRay.x264.mp4 Another.Movie.Name.II.2001.1080p.BluRay.x264.mp4 Desired Output: Some.Movie.Name.2011 Another.Movie.Name.1999 Another.Movie.Name.II.2001 I have used awk with regex: echo “Some.Movie.Name.2011.1080p.BluRay.x265.mp4” |awk -F’.[0-9]{4}’ ‘{print$1}’ Which gives me: Some.Movie.Name I can’t find a way with awk or anything else to have it print the 4 … Read more

Corrupted text file recovery (Win7 x64) [closed]

Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it’s on-topic for Server Fault. Closed 7 years ago. Improve this question I’m having some difficulties in recovering the contents of a .txt file. While writing to a text file, on a Win7 x64 virtual … Read more

Can Jdownloader be installed into text mode in linux without X11?

I’m insterested into installing Jdownloader into text mode in linux, i want to use the api it has to control the downloads from a web application Do you guys think that’s possible in gentoo? if so , how? Answer It does run without a proper value for $DISPLAY, but configuring it to use one of … Read more

How to find malformed – corrupted – dos – BOMByte Files in Linux

I’ve several problems maintaining large production servers, in which some developers drop files from Windows environments, sometime with BOM-bytes (We use UTF8, and no need for that), causing lots of troubles. Other times, I got a “no end of line” and “[DOS]” labels when vim-editing files directly on the server. I recently discovered how to … Read more

Getting \r\n newlines to display properly in Mantis database

I’ve exported a Mantis project from one server to another and despite the MySQL SQL file (from which it was populated) showing: (15375,’\r\n1. Log out\r\n\r\n2. When logging in, start … The final end-user view loses the \r\n and shows it only on one line: 1. Log out 2. When logging in, start typing When viewing … Read more

Remove text between delimiters in linux [duplicate]

This question already has answers here: How do I deal with a compromised server? (13 answers) Closed 9 years ago. Server got hacked and a fair amount of files were edited. We noticed that the code that was inserted were typically done between delimiters (e.g. /*e21234*/ blah blah /*/e21234*/). What is the most efficient way … Read more