Merge pull request 'add makefile and some minor fixes :3' (#1) from afiw/kissy:mistress into mistress

This commit is contained in:
Luna Magdalena :3 2025-11-18 00:58:06 +01:00
commit 1b43cf2487
4 changed files with 28 additions and 6 deletions

1
.gitignore vendored Normal file
View file

@ -0,0 +1 @@
/kissy

19
Makefile Normal file
View file

@ -0,0 +1,19 @@
CC := gcc
CFLAGS := -O2 -pipe -Wall -Wextra
INSTALL := install
PREFIX := /usr/local
BINDIR := bin
.PHONY: all
all: kissy
kissy: kissy.c
$(CC) $(CFLAGS) -o kissy kissy.c
.PHONY: install
install:
$(INSTALL) -Dm2755 -oroot -gtty -s kissy $(DESTDIR)$(PREFIX)/$(BINDIR)/kissy
.PHONY: clean
clean:
rm -f kissy

View file

@ -7,6 +7,8 @@ Ever wanted to kiss girls through a tty? Well now you can!
- run `sudo chown root:tty /path/to/kissy` (or whatever ownership it's supposed to have)
- run `sudo chmod 2755 /path/to/kissy` (or whatever permissions work for you. has to run with setgid)
- alternatively, build kissy from source using `make` then `sudo make install`
### Usage:
`kissy [target] <message>`
@ -18,4 +20,4 @@ Have fun girlkissing! :3
## License
This project is licensed with [GPLv3](https://www.gnu.org/licenses/gpl-3.0.txt)
This project is licensed with [GPLv3](https://www.gnu.org/licenses/gpl-3.0.txt)

10
kissy.c
View file

@ -53,7 +53,7 @@ int main (int argc, char **argv) {
printf("%s\n", "Cannot find target");
return 1;
}
int target = pw->pw_uid;
uid_t target = pw->pw_uid;
// get current username
struct passwd *pw2 = getpwuid(getuid());
@ -74,7 +74,7 @@ int main (int argc, char **argv) {
// iterate over all files in directory
DIR *dir = opendir("/dev/pts");
while (1) {
struct dirent *ent = readdir (dir);
struct dirent *ent = readdir(dir);
if (ent == NULL)
break;
@ -90,7 +90,7 @@ int main (int argc, char **argv) {
kissed = true;
if (stats.st_gid != getegid()) { // are we running as the tty user?
printf("%s\n", "Mismatch between file owner group and current effective group. Make sure this program is running with setgid.");
fprintf(stderr, "%s\n", "Mismatch between file owner group and current effective group. Make sure this program is running with setgid.");
} else {
FILE *tty = fopen(filepath, "a"); // write to terminal!
fprintf(tty, "\n%s\n--%s\n", kiss, user);
@ -101,5 +101,5 @@ int main (int argc, char **argv) {
// print a message if a suitable terminal couldn't be found
if (!kissed)
printf("%s\n", "Couldn't find any suitable terminals. User is not logged in or has not enabled messages.");
}
fprintf(stderr, "%s\n", "Couldn't find any suitable terminals. User is not logged in or has not enabled messages.");
}