You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When I run pyew /bin/ls I get a cache file (~/pyew-files.sqlite) in sqlite format directly in my home directory. That should be moved to a better place, preferably following the XDG basedir spec:
$ sqlite3 pyew-files.sqlite .schema
CREATE TABLE antidebugs (
id integer not null primary key,
sample_id, addr, mnemonic
);
CREATE TABLE function_stats (
id integer not null primary key,
sample_id, addr, nodes, edges, cc);
CREATE TABLE samples (id integer not null primary key,
md5, sha1, sha256, filename, type);
The text was updated successfully, but these errors were encountered:
Forwarding https://bugs.debian.org/688525
When I run
pyew /bin/ls
I get a cache file (~/pyew-files.sqlite
) in sqlite format directly in my home directory. That should be moved to a better place, preferably following the XDG basedir spec:The text was updated successfully, but these errors were encountered: