-
Notifications
You must be signed in to change notification settings - Fork 51
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Wifi and Bluetooth Patch | Security and Privacy #145
Merged
Merged
Changes from all commits
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
604d839
99_ipv6-privacy-extensions.conf
monsieuremre e90f62e
99_randomize_mac.conf
monsieuremre 3d4b04f
99_ipv6-privacy.conf
monsieuremre b298d15
30_security-misc.conf
monsieuremre 13b4ddb
30_security-misc.conf
monsieuremre 90a8822
security-misc.maintscript
monsieuremre fc8e201
rename
monsieuremre 76e684c
Update and rename etc/NetworkManager/conf.d/99_ipv6-privacy.conf to u…
monsieuremre 1049298
Update and rename etc/NetworkManager/conf.d/99_randomize-mac.conf to …
monsieuremre 229032d
Rename etc/systemd/networkd.conf.d/99_ipv6-privacy-extensions.conf to…
monsieuremre File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
[General] | ||
# How long to stay in pairable mode before going back to non-discoverable | ||
# The value is in seconds. Default is 0. | ||
# 0 = disable timer, i.e. stay pairable forever | ||
PairableTimeout = 30 | ||
|
||
# How long to stay in discoverable mode before going back to non-discoverable | ||
# The value is in seconds. Default is 180, i.e. 3 minutes. | ||
# 0 = disable timer, i.e. stay discoverable forever | ||
DiscoverableTimeout = 30 | ||
|
||
# Maximum number of controllers allowed to be exposed to the system. | ||
# Default=0 (unlimited) | ||
MaxControllers=1 | ||
|
||
# How long to keep temporary devices around | ||
# The value is in seconds. Default is 30. | ||
# 0 = disable timer, i.e. never keep temporary devices | ||
TemporaryTimeout = 0 | ||
|
||
[Policy] | ||
# AutoEnable defines option to enable all controllers when they are found. | ||
# This includes adapters present on start as well as adapters that are plugged | ||
# in later on. Defaults to 'true'. | ||
AutoEnable=false | ||
|
||
# network/on: A device will only accept advertising packets from peer | ||
# devices that contain private addresses. It may not be compatible with some | ||
# legacy devices since it requires the use of RPA(s) all the time. | ||
Privacy=network/on |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[connection] | ||
ipv6.ip6-privacy=2 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
[device-mac-randomization] | ||
wifi.scan-rand-mac-address=yes | ||
|
||
[connection-mac-randomization] | ||
ethernet.cloned-mac-address=random | ||
wifi.cloned-mac-address=random |
2 changes: 2 additions & 0 deletions
2
usr/lib/systemd/networkd.conf.d/99_ipv6-privacy-extensions.conf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
[Network] | ||
IPv6PrivacyExtensions=kernel |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This isn't needed. There are no conf files in /bin/. rm_conffile is only useful for /etc because these files are treated in a special way by dpkg.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I did not know this. Makes sense.