LocalFence
Open-source rootless iOS local network inventory and authorized access-control research tool
File Explorer
- build.yml
- FUNDING.yml
- AppIcon1024x1024.png
- [email protected]
- [email protected]
- AppIcon76x76@2x~ipad.png
- AppIcon83.5x83.5@2x~ipad.png
- Info.plist
- OUI.sqlite
- LFAppDelegate.h
- LFAppDelegate.m
- LFBonjourDiscovery.h
- LFBonjourDiscovery.m
- LFDeviceIdentityResolver.h
- LFDeviceIdentityResolver.m
- LFDevicesViewController.h
- LFDevicesViewController.m
- LFOUIResolver.h
- LFOUIResolver.m
- LFPermissionManager.h
- LFPermissionManager.m
- main.m
- entitlements.plist
- Makefile
- LFNetwork.h
- LFNetwork.m
- LFServer.h
- LFServer.m
- localfencectl.m
- main.m
- entitlements.plist
- Makefile
- ARCHITECTURE.md
- PROTOCOL.md
- postinst
- postrm
- prerm
- com.emp0ry.localfenced.plist
- build.sh
- test.sh
- update-oui.py
- LFCore.c
- LFCore.h
- LFIPCClient.h
- LFIPCClient.m
- test_core.c
- .gitignore
- CHANGELOG.md
- CONTRIBUTING.md
- control
- COPYRIGHT.md
- LEGAL.md
- LICENSE
- Makefile
- PRIVACY.md
- README.md
- SECURITY.md
- THIRD_PARTY_NOTICES.md
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
git clone
View Details ▼
git clone
Clone an existing repository.
git clone {{remote_repository_location}} {{path/to/directory}}
Clone an existing repository into a new directory (the default directory is the repository name):
git clone --recursive {{remote_repository_location}}
Clone an existing repository and its submodules:
git clone {{[-n|--no-checkout]}} {{remote_repository_location}}
Clone only the `.git` directory of an existing repository:
scp
View Details ▼
scp
Secure copy.
Copy files between hosts using Secure Copy Protocol over SSH.
scp {{path/to/local_file}} {{remote_host}}:{{path/to/remote_file}}
Copy a local file to a remote host:
scp -P {{port}} {{path/to/local_file}} {{remote_host}}:{{path/to/remote_file}}
Use a specific port when connecting to the remote host:
scp {{remote_host}}:{{path/to/remote_file}} {{path/to/local_directory}}
Copy a file from a remote host to a local directory:
ssh
View Details ▼
ssh
Secure Shell is a protocol used to securely log onto remote systems.
It can be used for logging or executing commands on a remote server.
ssh {{username}}@{{remote_host}}
Connect to a remote server:
ssh {{username}}@{{remote_host}} -i {{path/to/key_file}}
Connect to a remote server with a specific [i]dentity (private key):
ssh {{username}}@10.0.0.1 -p {{2222}}
Connect to a remote server with IP `10.0.0.1` and using a specific [p]ort (Note: `10.0.0.1` can be shortened to `10.1`):
apt install
View Details ▼
apt install
Install packages for Debian-based distributions.
sudo apt install {{package}}
Install a package, or update it to the latest version:
sudo apt install {{[-V|--verbose-versions]}} {{package}}
Display verbose package version information during installation or update:
