<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
	<channel>
		<atom:link href="https://dev1galaxy.org/extern.php?action=feed&amp;tid=6264&amp;type=rss" rel="self" type="application/rss+xml" />
		<title><![CDATA[Dev1 Galaxy Forum / [SOLVED] A folder with no name]]></title>
		<link>https://dev1galaxy.org/viewtopic.php?id=6264</link>
		<description><![CDATA[The most recent posts in [SOLVED] A folder with no name.]]></description>
		<lastBuildDate>Tue, 19 Dec 2023 09:38:39 +0000</lastBuildDate>
		<generator>FluxBB</generator>
		<item>
			<title><![CDATA[Re: [SOLVED] A folder with no name]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=46351#p46351</link>
			<description><![CDATA[<p>It was an empty environment variable set by the fff script because im using trash-cli i left it blank but with a space. In the script it calls <span class="bbc">mkdir -p $FFF_TRASH</span> and i suppose if left empty with a space it creates the folder every time the script is run. Sorry for the noise, solved.</p>]]></description>
			<author><![CDATA[dummy@example.com (soren)]]></author>
			<pubDate>Tue, 19 Dec 2023 09:38:39 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=46351#p46351</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] A folder with no name]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=46349#p46349</link>
			<description><![CDATA[<p>I figured it out, ive recently been using this terminal file manager called fff and it is the cause somehow.<br /><a href="https://github.com/dylanaraps/fff" rel="nofollow">https://github.com/dylanaraps/fff</a> <br />I deleted the directory and started fff up again and it creates it everytime, i only notice because i switch between fff and pcmanfm. Maybe fff needs this directory or maybe there is a bug in the script, ill have to investigate. </p><div class="codebox"><pre><code>~ $ stat &quot; &quot;
  File:
  Size: 4096            Blocks: 8          IO Block: 4096   directory
Device: 254,0   Inode: 1049631     Links: 2
Access: (0755/drwxr-xr-x)  Uid: ( 1000/   soren)   Gid: ( 1000/   soren)
Access: 2023-12-19 18:56:58.967995613 +1000
Modify: 2023-12-19 18:56:58.967995613 +1000
Change: 2023-12-19 18:56:58.967995613 +1000
 Birth: 2023-12-19 18:56:58.967995613 +1000</code></pre></div>]]></description>
			<author><![CDATA[dummy@example.com (soren)]]></author>
			<pubDate>Tue, 19 Dec 2023 09:03:33 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=46349#p46349</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] A folder with no name]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=46347#p46347</link>
			<description><![CDATA[<p>Thanks siva, ill have a look into those options, im hoping its nothing to do with malware.</p><p>aluma, its in the home folder. I deleted it and reboot today and same story. It has the same rights my user has for all files in home, that being unix file permission 755.</p><div class="codebox"><pre><code>~ $ ls -bgiQu 
1049631 drwxr-xr-x 2 soren 4.0K Dec 19 18:38 &quot; &quot;</code></pre></div>]]></description>
			<author><![CDATA[dummy@example.com (soren)]]></author>
			<pubDate>Tue, 19 Dec 2023 08:50:17 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=46347#p46347</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] A folder with no name]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=46346#p46346</link>
			<description><![CDATA[<p>Can you find out specifically in which directory this folder appears and with what rights?<br />Thank you.</p>]]></description>
			<author><![CDATA[dummy@example.com (aluma)]]></author>
			<pubDate>Tue, 19 Dec 2023 08:33:08 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=46346#p46346</guid>
		</item>
		<item>
			<title><![CDATA[Re: [SOLVED] A folder with no name]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=46345#p46345</link>
			<description><![CDATA[<p>Malware? Might be time for a fresh install/restore.</p><p>You could also use <em>auditd</em> to do some hunting. The output won&#039;t show you the Parent PID directly, but you could try to correlate it yourself.</p><div class="codebox"><pre><code>~# apt install auditd
...
~# /sbin/auditctl -w / -p rw -k var-run-pids -S all</code></pre></div><p>In your case, you could check for PATH events which follow folder-creation syscall events whose name contains some sequence of &quot;20,&quot; the hex encoding for a space.</p><div class="codebox"><pre><code># Create a folder whose name is a space.
~$ mkdir &#039; &#039;

# Start the hunt.
~$ grep -B 4 -A 5 &#039;exe=&quot;/bin/mkdir&quot;&#039; /var/log/audit/audit.log
...
type=SYSCALL msg=audit(1702969127.472:12053): arch=c00000b7 syscall=34 success=yes exit=0 a0=ffffffffffffff9c a1=ffffc4ba4745 a2=1ff a3=ffffc4ba35c0 items=2 ppid=7307 pid=8072 auid=1000 uid=0 gid=0 euid=0 suid=0 fsuid=0 egid=0 sgid=0 fsgid=0 tty=pts2 ses=5 comm=&quot;mkdir&quot; exe=&quot;/bin/mkdir&quot; subj=unconfined key=&quot;var-run-pids&quot;ARCH=aarch64 SYSCALL=mkdirat AUID=&quot;devuan&quot; UID=&quot;root&quot; GID=&quot;root&quot; EUID=&quot;root&quot; SUID=&quot;root&quot; FSUID=&quot;root&quot; EGID=&quot;root&quot; SGID=&quot;root&quot; FSGID=&quot;root&quot;
type=CWD msg=audit(1702969127.472:12053): cwd=&quot;/home/devuan/velociraptor&quot;
type=PATH msg=audit(1702969127.472:12053): item=0 name=&quot;/home/devuan/velociraptor&quot; inode=392843 dev=fe:02 mode=040755 ouid=1000 ogid=1000 rdev=00:00 nametype=PARENT cap_fp=0 cap_fi=0 cap_fe=0 cap_fver=0 cap_frootid=0OUID=&quot;devuan&quot; OGID=&quot;devuan&quot;
type=PATH msg=audit(1702969127.472:12053): item=1 name=20 inode=392733 dev=fe:02 mode=040755 ouid=0 ogid=0 rdev=00:00 nametype=CREATE cap_fp=0 cap_fi=0 cap_fe=0 cap_fver=0 cap_frootid=0OUID=&quot;root&quot; OGID=&quot;root&quot;
type=PROCTITLE msg=audit(1702969127.472:12053): proctitle=6D6B6469720020</code></pre></div><p>Here, the pathname is <span class="bbc">name=20</span>, which is a single space. The parent process ID of <em>/bin/mkdir</em> is 7303, which is bash on my system. You can use tree-generating tools like <em>ps</em> or <em>htop</em> to visually trace the PPID&#039;s parents or children.</p><p>You could also leverage something like Graylog, ELK/HELK, or Splunk free to make this easier. Still, this kind of thing would take some legwork, might not give you the results you want.</p><p>You could also check automated routines like cron/tab and maybe run an antivirus/antimalware.</p>]]></description>
			<author><![CDATA[dummy@example.com (siva)]]></author>
			<pubDate>Tue, 19 Dec 2023 07:38:47 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=46345#p46345</guid>
		</item>
		<item>
			<title><![CDATA[[SOLVED] A folder with no name]]></title>
			<link>https://dev1galaxy.org/viewtopic.php?pid=46344#p46344</link>
			<description><![CDATA[<p>A folder with no name has been appearing for the last week or so, i cant figure out why. Its just an empty directory and has no name just a few spaces for the folder name.</p><p>I delete it and reboot the next day and its back again. Just running stable Daedalus branch using sysvinit.</p><p>Must be some setting or program somewhere doing this, any ideas ?</p>]]></description>
			<author><![CDATA[dummy@example.com (soren)]]></author>
			<pubDate>Tue, 19 Dec 2023 03:17:52 +0000</pubDate>
			<guid>https://dev1galaxy.org/viewtopic.php?pid=46344#p46344</guid>
		</item>
	</channel>
</rss>
