Mark Steward

Results 41 comments of Mark Steward

openrowset is usually disabled by default these days. xp_dirtree might work for exfil, but it more likely to be blocked by firewalls.

I've hit against this tonight, and did the following: ``` naming_convention = { "ix": 'ix_%(column_0_label)s', "uq": "uq_%(table_name)s_%(column_0_name)s", "ck": "ck_%(table_name)s_%(column_0_name)s", "fk": "fk_%(table_name)s_%(column_0_name)s_%(referred_table_name)s", "pk": "pk_%(table_name)s" } db = SQLAlchemy(metadata=MetaData(naming_convention=naming_convention)) ``` Which is...

@sgabello that's a copy of my comment at https://github.com/miguelgrinberg/Flask-Migrate/issues/61#issuecomment-208131722. You probably also want the other bits because the default naming convention is slightly off.

Still getting this on 20.10.8 with the WSL2 backend. This fixed it: ``` $ sudo rmdir /mnt/wsl/docker-desktop-bind-mounts/$WSL_DISTRO_NAME/$(echo -n $(realpath "$PWD/file-that-refuses-to-mount")|sha256sum|cut -d\ -f1) ``` Can this perhaps be set not to...

I'm for this too. It's possible to use chromium-browser in ubuntu with proot, but native chrome would be ideal. The .apk is usually accessible in /system/app/Chrome - I wonder if...

As a workaround you can use something like this in your docker-compose.yml: ``` command: "bash -c \"/opt/mssql/bin/sqlservr | stdbuf -oL -eL tr -d '\r'\"" ``` I haven't tested what happens...

Anyone know of any good forks of this repo or should I create one?

No extra permission should be needed to download files to the Downloads directory on Android.

Count me in, pyppeteer's great and I'd be happy to help share the maintenance load.

I assume you know it's basically a translation of puppeteer? What do you mean by bloated?