Your question is not very clear: do you want all possible combinations (take any a from the first list, any b from the second etc.) or processing lists in parallel a.k.a. zip (the first element of each list, the second element and so on).
Both can be nicely solved with applicative functors:
Prelude> let f a b c d = (a,b,c,d)
Prelude Control.Applicative> :m +Control.Applicative
Prelude Control.Applicative> f <$> [1,2] <*> [3,4] <*> [5,6] <*> [7,8]
[(1,3,5,7),(1,3,5,8),(1,3,6,7),(1,3,6,8),(1,4,5,7),(1,4,5,8),(1,4,6,7),(1,4,6,8),(2,3,5,7),(2,3,5,8),(2,3,6,7),(2,3,6,8),(2,4,5,7),(2,4,5,8),(2,4,6,7),(2,4,6,8)]
Prelude Control.Applicative> getZipList $ f <$> ZipList [1,2] <*> ZipList [3,4] <*> ZipList [5,6] <*> ZipList [7,8]
[(1,3,5,7),(2,4,6,8)]